Django-jet fork with Django@3.0+ support
Project description
Django JET (Django-3 compatible)
Installation
- Download and install the Django3 compatible version of Django JET:
poetry add cifrazia-django-jetpip install cifrazia-django-jeteasy_install cifrazia-django-jet
- Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
INSTALLED_APPS = [
...,
'jet',
'django.contrib.admin',
]
- Make sure
django.template.context_processors.requestcontext processor is enabled in settings.py (Django 1.8+ way):
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
...,
'django.template.context_processors.request',
...
],
},
},
]
- Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
urlpatterns = [
'',
path('jet/', include('jet.urls', 'jet')), # Django JET URLS
path('admin/', include(admin.site.urls)),
...
]
-
Create database tables (chose):
python manage.py migrate jetpython manage.py syncdb
-
Collect static if you are in production environment:
python manage.py collectstatic
-
Clear your browser cache
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cifrazia-django-jet-1.1.4.tar.gz.
File metadata
- Download URL: cifrazia-django-jet-1.1.4.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26a27905140b55efe0c7e79fd73252f8cafe71be81ad6a6cfa92f5265e8789cb
|
|
| MD5 |
f409b86b996af6ba58b33d9f8cf73731
|
|
| BLAKE2b-256 |
f4c6da76e6c70b1e411e6bec50b3af0a8be089b7b436a19087b7bb6ba5c1c253
|
File details
Details for the file cifrazia_django_jet-1.1.4-py3-none-any.whl.
File metadata
- Download URL: cifrazia_django_jet-1.1.4-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5ebf3d8dc96d4cbb1ccad44a419f1d5a2317b4a0218cc48e405921081ba3515
|
|
| MD5 |
8beb1b610623a05a7d37dce98b91481a
|
|
| BLAKE2b-256 |
c942b4da656578ff9073100ab29a7b06372c6c68bd8c464f1b2d649bc4a3cace
|