{ "info": { "author": "Excel Wang, Denis Kildishev", "author_email": "support@jet.geex-arts.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "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 :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development", "Topic :: Software Development :: User Interfaces" ], "description": "==========\nDjango JET\n==========\n\n.. image:: https://travis-ci.org/geex-arts/django-jet.svg?branch=master\n :target: https://travis-ci.org/geex-arts/django-jet\n\n**Modern template for Django admin interface with improved functionality**\n\n+-----------------------------------------------------------------------------------------------------------------------------------+\n| Attention! **NEW JET** |\n+===================================================================================================================================+\n| **We are proud to announce completely new Jet. Please check out Live Demo.** |\n| |\n| Developing of new features for Django Jet will be frozen, only critical bugs will be fixed. |\n+-----------------------------------------------------------------------------------------------------------------------------------+\n| `Live Demo `_ |\n+-----------------------------------------------------------------------------------------------------------------------------------+\n\n\nDjango JET 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 a commercial\nlicense (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.. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png\n :width: 500px\n :height: 500px\n :scale: 50%\n :alt: Logo\n :align: center\n \n* Home page: http://jet.geex-arts.com/\n* **New Jet**: `Live Demo `_\n* Live Demo: http://demo.jet.geex-arts.com/admin/\n* Documentation: http://jet.readthedocs.org/\n* libi.io http://libi.io/library/1683/django-jet\n* PyPI: https://pypi.python.org/pypi/django-jet\n* Support: support@jet.geex-arts.com\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\n.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1_720.png\n :alt: Screenshot #1\n :align: center\n :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1.png\n \n.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2_720.png\n :alt: Screenshot #2\n :align: center\n :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2.png\n \n.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3_720.png\n :alt: Screenshot #3\n :align: center\n :target: https://raw.githubusercontent.com/geex-arts/django-jet/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-jet\n # or\n easy_install django-jet\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.. warning::\n Before Django 1.8 you should specify context processors different way. Also use ``django.core.context_processors.request`` instead of ``django.template.context_processors.request``.\n\n .. code:: python\n\n from django.conf import global_settings\n\n TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (\n 'django.core.context_processors.request',\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 url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS\n url(r'^admin/', include(admin.site.urls)),\n ...\n )\n\n* Create database tables:\n\n.. code:: python\n\n python manage.py migrate jet\n # or \n python manage.py syncdb\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 url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS\n url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS\n url(r'^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 # or\n python manage.py syncdb\n\n* Collect static if you are in production environment:\n\n.. code:: python\n\n python manage.py collectstatic", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/geex-arts/django-jet", "keywords": "", "license": "AGPLv3", "maintainer": "", "maintainer_email": "", "name": "django-jet-opt", "package_url": "https://pypi.org/project/django-jet-opt/", "platform": "", "project_url": "https://pypi.org/project/django-jet-opt/", "project_urls": { "Homepage": "https://github.com/geex-arts/django-jet" }, "release_url": "https://pypi.org/project/django-jet-opt/1.0.8/", "requires_dist": null, "requires_python": "", "summary": "Modern template for Django admin interface with improved functionality", "version": "1.0.8" }, "last_serial": 5496790, "releases": { "1.0.8": [ { "comment_text": "", "digests": { "md5": "f0a6e722760fbe50ce7684eb8667b4b7", "sha256": "bd9b9672e91d42d80544a9f13ab2413ea60bf4a4b9fa065d79fbb168529214da" }, "downloads": -1, "filename": "django-jet-opt-1.0.8.tar.gz", "has_sig": false, "md5_digest": "f0a6e722760fbe50ce7684eb8667b4b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 824993, "upload_time": "2019-07-07T10:03:32", "url": "https://files.pythonhosted.org/packages/10/3c/6a6f86c1c31a0823fc2912bf3f6ed4463c41fbd01c1ac71c3f0565aad5c1/django-jet-opt-1.0.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f0a6e722760fbe50ce7684eb8667b4b7", "sha256": "bd9b9672e91d42d80544a9f13ab2413ea60bf4a4b9fa065d79fbb168529214da" }, "downloads": -1, "filename": "django-jet-opt-1.0.8.tar.gz", "has_sig": false, "md5_digest": "f0a6e722760fbe50ce7684eb8667b4b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 824993, "upload_time": "2019-07-07T10:03:32", "url": "https://files.pythonhosted.org/packages/10/3c/6a6f86c1c31a0823fc2912bf3f6ed4463c41fbd01c1ac71c3f0565aad5c1/django-jet-opt-1.0.8.tar.gz" } ] }