{ "info": { "author": "TIK (Technology Innovation Network)", "author_email": "contat@tik.tn", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: Free for non-commercial use", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development", "Topic :: Software Development :: User Interfaces" ], "description": "===========\nDjango JET2\n===========\n\n.. image:: https://travis-ci.org/tiktn/django-jet2.svg?branch=master\n :target: https://travis-ci.org/tiktn/django-jet2\n\n**Next Generation django-jet2 (Modern template for Django admin interface with improved functionality)**\n\n.. image:: https://raw.githubusercontent.com/tiktn/django-jet2/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/tiktn/django-jet2\n* Documentation: http://django-jet2.rtfd.io/\n* PyPI: https://pypi.python.org/pypi/django-jet2\n* Support: support@tik.tn\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/tiktn/django-jet2/master/docs/_static/screen1_720.png\n :alt: Screenshot #1\n :align: center\n :target: https://raw.githubusercontent.com/tiktn/django-jet2/master/docs/_static/screen1.png\n\nChangelist\n\n.. image:: https://raw.githubusercontent.com/tiktn/django-jet2/master/docs/_static/screen2_720.png\n :alt: Screenshot #2\n :align: center\n :target: https://raw.githubusercontent.com/tiktn/django-jet2/master/docs/_static/screen2.png\n\nSidemenu\n\n.. image:: https://raw.githubusercontent.com/tiktn/django-jet2/master/docs/_static/screen3_720.png\n :alt: Screenshot #3\n :align: center\n :target: https://raw.githubusercontent.com/tiktn/django-jet2/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-jet2\n # or\n easy_install django-jet2\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\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tiktn/django-jet2", "keywords": "", "license": "AGPLv3", "maintainer": "", "maintainer_email": "", "name": "django-jet2", "package_url": "https://pypi.org/project/django-jet2/", "platform": "", "project_url": "https://pypi.org/project/django-jet2/", "project_urls": { "Documentation": "http://django-jet2.rtfd.io/", "Homepage": "https://github.com/tiktn/django-jet2", "Source": "https://github.com/tiktn/django-jet2", "Tracker": "https://github.com/tiktn/django-jet2/issues" }, "release_url": "https://pypi.org/project/django-jet2/1.0.10/", "requires_dist": [ "Django" ], "requires_python": ">=3", "summary": "Next Generation of django-jet (Modern template for Django admin interface with improved functionality)", "version": "1.0.10" }, "last_serial": 5432643, "releases": { "1.0.10": [ { "comment_text": "", "digests": { "md5": "d49da23465512c9640b812830a5e5863", "sha256": "e3bed1fda8e2f082bffdb9fcbdda159d4f91356ab85d79ea85b3f161c57e9360" }, "downloads": -1, "filename": "django_jet2-1.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d49da23465512c9640b812830a5e5863", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1078234, "upload_time": "2019-06-21T20:04:26", "url": "https://files.pythonhosted.org/packages/6e/f2/a7681a9ac9ff2ee4b33c50605619d3fc2933a7ac9dafc6e7dccef05d6124/django_jet2-1.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be6b29c3ce5ad3f3abdb3a1dcd5d8f84", "sha256": "a388e39096d6dab8953e7a0a5cc935852513e6167433cfb0ce10e029df5a70ff" }, "downloads": -1, "filename": "django-jet2-1.0.10.tar.gz", "has_sig": false, "md5_digest": "be6b29c3ce5ad3f3abdb3a1dcd5d8f84", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 823943, "upload_time": "2019-06-21T20:04:34", "url": "https://files.pythonhosted.org/packages/1c/ad/f69177b1434c4083465a69fd4f3d411fbfb5309083ef7574b5aca007e287/django-jet2-1.0.10.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "7d1fb8f176a13fc1a6c333043100e761", "sha256": "979b5183f773e4ba78d71919dc49deb1059e15f8db69615e13698c448cad6c2e" }, "downloads": -1, "filename": "django_jet2-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "7d1fb8f176a13fc1a6c333043100e761", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1079392, "upload_time": "2019-06-13T15:19:12", "url": "https://files.pythonhosted.org/packages/a2/35/3025f9af1178000a0120b58373e6188ecc19a00b2477e3089f6d1da7aa4f/django_jet2-1.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7c52bffca52dd1279f7c9b2f202c1e9", "sha256": "283dbf879fcf77e90228b857dd53608bdcf9e197aa66964ccb60cd0721dfdc3f" }, "downloads": -1, "filename": "django-jet2-1.0.8.tar.gz", "has_sig": false, "md5_digest": "b7c52bffca52dd1279f7c9b2f202c1e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 824898, "upload_time": "2019-06-13T15:19:17", "url": "https://files.pythonhosted.org/packages/a1/7c/e7c071570aa5192430fae28f6847125048c6a3409608dcb2617c52e025bc/django-jet2-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "f70a915352b748850412f8ed758401da", "sha256": "7f08876bef74bfb52cb821426f30ebe48dd49d845661b753d8566c15e5b53d09" }, "downloads": -1, "filename": "django_jet2-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "f70a915352b748850412f8ed758401da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1078192, "upload_time": "2019-06-21T10:16:22", "url": "https://files.pythonhosted.org/packages/9b/a7/54bb98679ce07df3ad82587bd5c3c082731006223112756f89f796e2668e/django_jet2-1.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cffd9d307a9866bd98ec7aa6765e0177", "sha256": "7e80fa5c1ad015a87012f898f1c87d2928fd19b8b744e3cf2237da59f164559d" }, "downloads": -1, "filename": "django-jet2-1.0.9.tar.gz", "has_sig": false, "md5_digest": "cffd9d307a9866bd98ec7aa6765e0177", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 823894, "upload_time": "2019-06-21T10:16:30", "url": "https://files.pythonhosted.org/packages/07/aa/655020e1fed0ee770cbcbe75b46f19e9458b6bee0609e07a8194c6f12dbf/django-jet2-1.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d49da23465512c9640b812830a5e5863", "sha256": "e3bed1fda8e2f082bffdb9fcbdda159d4f91356ab85d79ea85b3f161c57e9360" }, "downloads": -1, "filename": "django_jet2-1.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d49da23465512c9640b812830a5e5863", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1078234, "upload_time": "2019-06-21T20:04:26", "url": "https://files.pythonhosted.org/packages/6e/f2/a7681a9ac9ff2ee4b33c50605619d3fc2933a7ac9dafc6e7dccef05d6124/django_jet2-1.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be6b29c3ce5ad3f3abdb3a1dcd5d8f84", "sha256": "a388e39096d6dab8953e7a0a5cc935852513e6167433cfb0ce10e029df5a70ff" }, "downloads": -1, "filename": "django-jet2-1.0.10.tar.gz", "has_sig": false, "md5_digest": "be6b29c3ce5ad3f3abdb3a1dcd5d8f84", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 823943, "upload_time": "2019-06-21T20:04:34", "url": "https://files.pythonhosted.org/packages/1c/ad/f69177b1434c4083465a69fd4f3d411fbfb5309083ef7574b5aca007e287/django-jet2-1.0.10.tar.gz" } ] }