Modern template for Django admin interface with improved functionality
Project description
Modern template for Django admin interface with improved functionality
Installation
Download and install latest version of Django JET:
pip install r-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.request context 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 = patterns(
'',
path('jet/', include('jet.urls', 'jet')), # Django JET URLS
path('admin/', include(admin.site.urls)),
...
)
Create database tables:
python manage.py migrate jet
Collect static if you are in production environment:
python manage.py collectstatic
Clear your browser cache
Dashboard installation
Add ‘jet.dashboard’ application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before ‘jet’):
INSTALLED_APPS = (
...
'jet.dashboard',
'jet',
'django.contrib.admin',
...
)
Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
urlpatterns = patterns(
'',
path('jet/', include('jet.urls', 'jet')), # Django JET URLS
path('jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
path('admin/', include(admin.site.urls)),
...
)
For Google Analytics widgets only install python package:
pip install google-api-python-client==1.4.1
Create database tables:
python manage.py migrate dashboard
Collect static if you are in production environment:
python manage.py collectstatic
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
File details
Details for the file r-django-jet-2.0.9.tar.gz
.
File metadata
- Download URL: r-django-jet-2.0.9.tar.gz
- Upload date:
- Size: 825.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8aacd4a9af559d79a30f7674a2fb8c4b7b934dc58517a0914805e589f5daba02 |
|
MD5 | 0c01fae524587bd32ef62709b239d603 |
|
BLAKE2b-256 | c82aa8b821a9fe4d4ea258c5e304df0c82e52572251421887ceb84357cb2f80d |
File details
Details for the file r_django_jet-2.0.9-py3-none-any.whl
.
File metadata
- Download URL: r_django_jet-2.0.9-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49d46f3dcc667c90f08a653e953cbd05dd7c6ac00ea1945ab11ec1b11e92559c |
|
MD5 | 638531a6e2b546924b3d7aad6c355e3b |
|
BLAKE2b-256 | 50c0120b2c4c00a49c8c6e8b714a3a46d70adbb2abcfc15ec0af44b8083ea42e |