Skip to main content

Django JET (Django-3 compatible)

Fork from https://github.com/mariusionescu/django-jet

Installation

  • Download and install the Django3 compatible version of Django JET:
    • poetry add cifrazia-django-jet
    • pip install cifrazia-django-jet
    • easy_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.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 = [
    '',
    path('jet/', include('jet.urls', 'jet')),  # Django JET URLS
    path('admin/', include(admin.site.urls)),
    ...
]
  • Create database tables (chose):

    • python manage.py migrate jet
    • python manage.py syncdb
  • Collect static if you are in production environment:

    • python manage.py collectstatic
  • Clear your browser cache

Download files

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

Source Distribution

cifrazia-django-jet-1.1.4.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

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

cifrazia_django_jet-1.1.4-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

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

Hashes for cifrazia-django-jet-1.1.4.tar.gz
Algorithm Hash digest
SHA256 26a27905140b55efe0c7e79fd73252f8cafe71be81ad6a6cfa92f5265e8789cb
MD5 f409b86b996af6ba58b33d9f8cf73731
BLAKE2b-256 f4c6da76e6c70b1e411e6bec50b3af0a8be089b7b436a19087b7bb6ba5c1c253

See more details on using hashes here.

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

Hashes for cifrazia_django_jet-1.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a5ebf3d8dc96d4cbb1ccad44a419f1d5a2317b4a0218cc48e405921081ba3515
MD5 8beb1b610623a05a7d37dce98b91481a
BLAKE2b-256 c942b4da656578ff9073100ab29a7b06372c6c68bd8c464f1b2d649bc4a3cace

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.4 This release

2 files

Supported by

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