{ "info": { "author": "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", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "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\n\n\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/reckonsys/rs-django-jet", "keywords": "", "license": "AGPLv3", "maintainer": "Govind Sharma", "maintainer_email": "info@reckonsys.com", "name": "rs-django-jet", "package_url": "https://pypi.org/project/rs-django-jet/", "platform": "", "project_url": "https://pypi.org/project/rs-django-jet/", "project_urls": { "Homepage": "https://github.com/reckonsys/rs-django-jet" }, "release_url": "https://pypi.org/project/rs-django-jet/1.0.10/", "requires_dist": [ "Django" ], "requires_python": "", "summary": "Fork of django-jet with Reckonsys customizations", "version": "1.0.10" }, "last_serial": 4828094, "releases": { "1.0.10": [ { "comment_text": "", "digests": { "md5": "20a9cd18d5c597e9abb8d95388b44af3", "sha256": "71243f76a5f273d28a950474a687e4947a277a0f4939025525467d00fcf0b4cd" }, "downloads": -1, "filename": "rs_django_jet-1.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20a9cd18d5c597e9abb8d95388b44af3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1076135, "upload_time": "2019-02-16T07:14:50", "url": "https://files.pythonhosted.org/packages/09/3c/44a9c8487508260bb5c002f3ad72ea57fb7b84130a5764f4b2769f132aac/rs_django_jet-1.0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08c21ccca74b2e2a0387c59ed1e7f8b8", "sha256": "74102be4116d9ed7ddae514b6a0fd8c3cd9d705f376dc81b3c2eb4700eca30f9" }, "downloads": -1, "filename": "rs-django-jet-1.0.10.tar.gz", "has_sig": false, "md5_digest": "08c21ccca74b2e2a0387c59ed1e7f8b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 826364, "upload_time": "2019-02-16T07:14:54", "url": "https://files.pythonhosted.org/packages/e3/ce/6f23780915ab9b412df3eb885ed0650e32c6b40a3fedd84abc327edd1841/rs-django-jet-1.0.10.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "92791a39a5e1330f7df01a3bbb0f33c3", "sha256": "478a3a04d1d1e97dd48f9dc662d19213cbd254063e8251b016f939074e2f81e8" }, "downloads": -1, "filename": "rs_django_jet-1.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92791a39a5e1330f7df01a3bbb0f33c3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1076124, "upload_time": "2019-02-16T07:07:43", "url": "https://files.pythonhosted.org/packages/0e/07/4b8a110737dc573a11a5821da9c0fc75ec49207f18a0032136272a9f5207/rs_django_jet-1.0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e80e8509ed2f306f225501dd02524473", "sha256": "3fae2a5586f74b4966cb069ebcb7a7b0cdd7e03c25cf6599daee071900d6f31e" }, "downloads": -1, "filename": "rs-django-jet-1.0.9.tar.gz", "has_sig": false, "md5_digest": "e80e8509ed2f306f225501dd02524473", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 826340, "upload_time": "2019-02-16T07:07:48", "url": "https://files.pythonhosted.org/packages/a4/5c/fdd3a2465ad59d6bbe0a138ca7a936a44612bfa4fcf1b4c8e76adad14c7e/rs-django-jet-1.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "20a9cd18d5c597e9abb8d95388b44af3", "sha256": "71243f76a5f273d28a950474a687e4947a277a0f4939025525467d00fcf0b4cd" }, "downloads": -1, "filename": "rs_django_jet-1.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20a9cd18d5c597e9abb8d95388b44af3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1076135, "upload_time": "2019-02-16T07:14:50", "url": "https://files.pythonhosted.org/packages/09/3c/44a9c8487508260bb5c002f3ad72ea57fb7b84130a5764f4b2769f132aac/rs_django_jet-1.0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08c21ccca74b2e2a0387c59ed1e7f8b8", "sha256": "74102be4116d9ed7ddae514b6a0fd8c3cd9d705f376dc81b3c2eb4700eca30f9" }, "downloads": -1, "filename": "rs-django-jet-1.0.10.tar.gz", "has_sig": false, "md5_digest": "08c21ccca74b2e2a0387c59ed1e7f8b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 826364, "upload_time": "2019-02-16T07:14:54", "url": "https://files.pythonhosted.org/packages/e3/ce/6f23780915ab9b412df3eb885ed0650e32c6b40a3fedd84abc327edd1841/rs-django-jet-1.0.10.tar.gz" } ] }