============
Django DJET2
============
Django admin interface based on django-jet (and django-jet2) forked for recent Django.
.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/logo.png
:width: 500px
:height: 500px
:scale: 50%
:alt: Logo
:align: center
* Home page: https://github.com/djungle-io/django-djet2
* PyPI: https://pypi.python.org/pypi/django-djet2
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
.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen1_720.png
:alt: Screenshot #1
:align: center
:target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen1.png
Changelist
.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen2_720.png
:alt: Screenshot #2
:align: center
:target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen2.png
Sidemenu
.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen3_720.png
:alt: Screenshot #3
:align: center
:target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen3.png
Installation
============
* Download and install latest version of Django JET:
.. code:: python
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'):
.. code:: python
INSTALLED_APPS = (
...
'jet',
'django.contrib.admin',
)
* Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):
.. code:: python
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):
.. code:: python
urlpatterns = patterns(
'',
path('jet/', include('jet.urls', 'jet')), # Django JET URLS
path('admin/', include(admin.site.urls)),
...
)
* Create database tables:
.. code:: python
python manage.py migrate jet
* Collect static if you are in production environment:
.. code:: python
python manage.py collectstatic
* Clear your browser cache
Dashboard installation
======================
.. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
To enable dashboard application follow these steps:
* Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
.. code:: python
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):
.. code:: python
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:
.. code::
pip install google-api-python-client==1.4.1
* Create database tables:
.. code:: python
python manage.py migrate dashboard
* Collect static if you are in production environment:
.. code:: python
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.
Raw data
{
"_id": null,
"home_page": "https://github.com/djungle-io/django-djet2",
"name": "django-djet2",
"maintainer": "Djungle Studio",
"docs_url": null,
"requires_python": ">=3",
"maintainer_email": "tech@djungle.io",
"keywords": "django, admin",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/fa/b6/e2d8d27be87119c7c6afa43ce924f7b7e3e992636107a7b2ccec2b27b519/django_djet2-1.0.17.tar.gz",
"platform": null,
"description": "============\nDjango DJET2\n============\n\nDjango admin interface based on django-jet (and django-jet2) forked for recent Django.\n\n.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/logo.png\n :width: 500px\n :height: 500px\n :scale: 50%\n :alt: Logo\n :align: center\n\n* Home page: https://github.com/djungle-io/django-djet2\n* PyPI: https://pypi.python.org/pypi/django-djet2\n\nWhy Django JET?\n===============\n\n* New fresh look\n* Responsive mobile interface\n* Useful admin home page\n* Minimal template overriding\n* Easy integration\n* Themes support\n* Autocompletion\n* Handy controls\n\nScreenshots\n===========\n\nIndex dashboard\n\n.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen1_720.png\n :alt: Screenshot #1\n :align: center\n :target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen1.png\n\nChangelist\n\n.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen2_720.png\n :alt: Screenshot #2\n :align: center\n :target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen2.png\n\nSidemenu\n\n.. image:: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen3_720.png\n :alt: Screenshot #3\n :align: center\n :target: https://raw.githubusercontent.com/djungle-io/django-djet2/master/docs/_static/screen3.png\n\nInstallation\n============\n\n* Download and install latest version of Django JET:\n\n.. code:: python\n\n pip install django-djet2\n\n* Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):\n\n.. code:: python\n\n INSTALLED_APPS = (\n ...\n 'jet',\n 'django.contrib.admin',\n )\n\n* Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):\n\n.. code:: python\n\n TEMPLATES = [\n {\n 'BACKEND': 'django.template.backends.django.DjangoTemplates',\n 'DIRS': [],\n 'APP_DIRS': True,\n 'OPTIONS': {\n 'context_processors': [\n ...\n 'django.template.context_processors.request',\n ...\n ],\n },\n },\n ]\n\n* Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related\u2013lookups and autocompletes):\n\n.. code:: python\n\n urlpatterns = patterns(\n '',\n path('jet/', include('jet.urls', 'jet')), # Django JET URLS\n path('admin/', include(admin.site.urls)),\n ...\n )\n\n* Create database tables:\n\n.. code:: python\n\n python manage.py migrate jet\n\n* Collect static if you are in production environment:\n\n.. code:: python\n\n python manage.py collectstatic\n\n* Clear your browser cache\n\nDashboard installation\n======================\n\n.. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.\n To enable dashboard application follow these steps:\n\n* Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):\n\n.. code:: python\n\n INSTALLED_APPS = (\n ...\n 'jet.dashboard',\n 'jet',\n 'django.contrib.admin',\n ...\n )\n\n* Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related\u2013lookups and autocompletes):\n\n.. code:: python\n\n urlpatterns = patterns(\n '',\n path('jet/', include('jet.urls', 'jet')), # Django JET URLS\n path('jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS\n path('admin/', include(admin.site.urls)),\n ...\n )\n\n* **For Google Analytics widgets only** install python package:\n\n.. code::\n\n pip install google-api-python-client==1.4.1\n\n* Create database tables:\n\n.. code:: python\n\n python manage.py migrate dashboard\n\n* Collect static if you are in production environment:\n\n.. code:: python\n\n python manage.py collectstatic\n\nLicense\n=======\n\nDjango JET (which Django JET2 is based on) has two kinds of licenses: open-source (AGPLv3) and commercial. Please note that using AGPLv3\ncode in your programs make them AGPL compatible too. So if you don't want to comply with that we can provide you\na commercial license (visit Home page). The commercial license is designed for using Django JET in commercial products\nand applications without the provisions of the AGPLv3.\n",
"bugtrack_url": null,
"license": "AGPLv3",
"summary": "Next Generation of django-jet (Modern template for Django admin interface with improved functionality)",
"version": "1.0.17",
"project_urls": {
"Homepage": "https://github.com/djungle-io/django-djet2",
"Source": "https://github.com/djungle-io/django-djet2",
"Tracker": "https://github.com/djungle-io/django-djet2/issues"
},
"split_keywords": [
"django",
" admin"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d7d864234902e3862ed8c4e0b81362fe55a42d9e1a6320a95d3583de6c5d3e97",
"md5": "009f643bcfad952373898c9fcf2b704a",
"sha256": "4c9d2e49dd72ceef8f111aa61403824996fc8a7df82e4f18b12f5b3ef3402a98"
},
"downloads": -1,
"filename": "django_djet2-1.0.17-py3-none-any.whl",
"has_sig": false,
"md5_digest": "009f643bcfad952373898c9fcf2b704a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 981713,
"upload_time": "2024-06-12T13:53:42",
"upload_time_iso_8601": "2024-06-12T13:53:42.385712Z",
"url": "https://files.pythonhosted.org/packages/d7/d8/64234902e3862ed8c4e0b81362fe55a42d9e1a6320a95d3583de6c5d3e97/django_djet2-1.0.17-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fab6e2d8d27be87119c7c6afa43ce924f7b7e3e992636107a7b2ccec2b27b519",
"md5": "ce37d9d3820a4366e73fddca2cd06b39",
"sha256": "a1e0a41d43ca987bd81b1afe23967889c613229d7f9919fa4612638809f5ffeb"
},
"downloads": -1,
"filename": "django_djet2-1.0.17.tar.gz",
"has_sig": false,
"md5_digest": "ce37d9d3820a4366e73fddca2cd06b39",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 749303,
"upload_time": "2024-06-12T13:53:44",
"upload_time_iso_8601": "2024-06-12T13:53:44.322396Z",
"url": "https://files.pythonhosted.org/packages/fa/b6/e2d8d27be87119c7c6afa43ce924f7b7e3e992636107a7b2ccec2b27b519/django_djet2-1.0.17.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-12 13:53:44",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "djungle-io",
"github_project": "django-djet2",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-djet2"
}