Skip to main content

Next Generation of django-jet (Modern template for Django admin interface with improved functionality)

Project description

Django admin interface based on django-jet (and django-jet2) forked for recent Django.

Logo

Why Django JET?

  • New fresh look

  • Responsive mobile interface

  • Useful admin home page

  • Minimal template overriding

  • Easy integration

  • Themes support

  • Autocompletion

  • Handy controls

Screenshots

Index dashboard

Screenshot #1

Changelist

Screenshot #2

Sidemenu

Screenshot #3

Installation

  • Download and install latest version of Django JET:

pip install django-djet2
  • 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

License

Django JET (which Django JET2 is based on) has two kinds of licenses: open-source (AGPLv3) and commercial. Please note that using AGPLv3 code in your programs make them AGPL compatible too. So if you don’t want to comply with that we can provide you a commercial license (visit Home page). The commercial license is designed for using Django JET in commercial products and applications without the provisions of the AGPLv3.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_djet2-1.0.18.tar.gz (749.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_djet2-1.0.18-py3-none-any.whl (981.8 kB view details)

Uploaded Python 3

File details

Details for the file django_djet2-1.0.18.tar.gz.

File metadata

  • Download URL: django_djet2-1.0.18.tar.gz
  • Upload date:
  • Size: 749.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for django_djet2-1.0.18.tar.gz
Algorithm Hash digest
SHA256 0e7decf3d6475816f1ac0975e2746a04972303117ef644d93975bb3e30e4780b
MD5 a114e72c8b1a8f59b5a9a93f25f8353d
BLAKE2b-256 2364c17ed4b938be35541ec810878316bcb90b705e5fb15727b891ab05908f25

See more details on using hashes here.

File details

Details for the file django_djet2-1.0.18-py3-none-any.whl.

File metadata

  • Download URL: django_djet2-1.0.18-py3-none-any.whl
  • Upload date:
  • Size: 981.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for django_djet2-1.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 989c844da27ca962ac3d6a5eb745d4d04cdf7b71fbcdfa02930c60f248c5b942
MD5 657a81d8c155aeb39ea922f35e54e7f5
BLAKE2b-256 1785f13a3d67d0c1b0b4a7788feda17f28142c24c7c6e834a146ff4dcb65c0b8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page