jet-django icon indicating copy to clipboard operation
jet-django copied to clipboard

Jet Bridge (Django) for Jet Admin – Admin panel framework for your application

Results 16 jet-django issues
Sort by recently updated
recently updated
newest added

so im using django 3.1 and i defined a model with a foreign key relation like this: ```sh class Account(TimeStampedModel): corporate = models.ForeignKey('CompanyDetail',on_delete=models.CASCADE,related_name= 'corporate_accounts') balance = models.DecimalField(max_digits=20, decimal_places=2) ``` this...

I'm trying to integrate jet through Django Integration. Using https://github.com/reckonsys/rs-django-jet#readme as I am using UUID as ID field on User model. The /jet/register call did not activate the admin in...

Currently, Jet Admin opens a SQL connection immediately on the app start. This is causing issues on high load projects. For example, I'm running an auto scalable Google Cloud Run...

Currently, there is no way to connect to a Postgres running on a custom socket (e.g. in Google App Engine). 1) with this Django `settings.py` (as per [Django docs](https://docs.djangoproject.com/en/3.0/ref/settings/#host)): ```py...

Why version tags here (the repository) are diffrente from pypi? Latest pypi version: 1.0.1 https://pypi.org/project/jet-django/#history Latest repository version: 0.7.3 https://github.com/jet-admin/jet-django/releases

I have multiple databases with a custom router. Any models that are not on the "default" database do not show up in Jet.

I have the following dynamic entity in one of my models: ```py # Dynamic relationship to either Org, Institution or Campus entities generic_owner_content_type = models.ForeignKey( ContentType, on_delete=models.CASCADE, # TODO check...

SQL Queries are exposed while passing `payload` to `https://api-fberry-demo.geex-arts.com/jet_api/sql/`. The right way should be to build queries on the go in the backend only. Any specific reason why queries (literally)...

I am using a field called "[django-money](https://github.com/django-money/django-money)" and when trying to use it with jet-admin throws an exception `decimal.InvalidOperation: []` This happens because it tries to serialize it as a...

Information block added for django versions later than 1.11