django-jet-new


Namedjango-jet-new JSON
Version 2.3.3 PyPI version JSON
download
home_pagehttps://github.com/geex-arts/django-jet
SummaryModern template for Django admin interface with improved functionality
upload_time2023-07-14 22:47:19
maintainer
docs_urlNone
authorDenis Kildishev
requires_python
licenseAGPLv3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ==========
Django JET
==========

.. image:: https://travis-ci.org/geex-arts/django-jet.svg?branch=master
    :target: https://travis-ci.org/geex-arts/django-jet

**Modern template for Django admin interface with improved functionality**

+-----------------------------------------------------------------------------------------------------------------------------------+
| Attention! **NEW JET**                                                                                                            |
+===================================================================================================================================+
| **We are proud to announce completely new Jet. Please check out Live Demo.**                                                      |
|                                                                                                                                   |
| Developing of new features for Django Jet will be frozen, only critical bugs will be fixed.                                       |
+-----------------------------------------------------------------------------------------------------------------------------------+
| `Live Demo <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_  |
+-----------------------------------------------------------------------------------------------------------------------------------+


Django JET 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.

.. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
    :width: 500px
    :height: 500px
    :scale: 50%
    :alt: Logo
    :align: center
    
* Home page: http://jet.geex-arts.com/
* **New Jet**: `Live Demo <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_
* Live Demo: http://demo.jet.geex-arts.com/admin/
* Documentation: http://jet.readthedocs.org/
* libi.io http://libi.io/library/1683/django-jet
* PyPI: https://pypi.python.org/pypi/django-jet
* Support: support@jet.geex-arts.com

Why Django JET?
===============

* New fresh look
* Responsive mobile interface
* Useful admin home page
* Minimal template overriding
* Easy integration
* Themes support
* Autocompletion
* Handy controls

Screenshots
===========

.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1_720.png
    :alt: Screenshot #1
    :align: center
    :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1.png
    
.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2_720.png
    :alt: Screenshot #2
    :align: center
    :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2.png
    
.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3_720.png
    :alt: Screenshot #3
    :align: center
    :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3.png

Installation
============

* Download and install latest version of Django JET:

.. code:: python

    pip install django-jet
    # or
    easy_install 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'):

.. 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',
                    ...
                ],
            },
        },
    ]

.. warning::
    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``.

    .. code:: python

        from django.conf import global_settings

        TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
            'django.core.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(
        '',
        url(r'^jet/', include('jet.urls', 'jet')),  # Django JET URLS
        url(r'^admin/', include(admin.site.urls)),
        ...
    )

* Create database tables:

.. code:: python

    python manage.py migrate jet
    # or 
    python manage.py syncdb
        
* 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(
        '',
        url(r'^jet/', include('jet.urls', 'jet')),  # Django JET URLS
        url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')),  # Django JET dashboard URLS
        url(r'^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
    # or
    python manage.py syncdb

* Collect static if you are in production environment:

.. code:: python

        python manage.py collectstatic
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/geex-arts/django-jet",
    "name": "django-jet-new",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Denis Kildishev",
    "author_email": "support@jet.geex-arts.com",
    "download_url": "https://files.pythonhosted.org/packages/2f/e3/007c74cd5505c972159e7bf3cb703c7e386be37f5522b7a87552295f746f/django-jet-new-2.3.3.tar.gz",
    "platform": null,
    "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 <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_  |\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 <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_\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",
    "bugtrack_url": null,
    "license": "AGPLv3",
    "summary": "Modern template for Django admin interface with improved functionality",
    "version": "2.3.3",
    "project_urls": {
        "Homepage": "https://github.com/geex-arts/django-jet"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fe3007c74cd5505c972159e7bf3cb703c7e386be37f5522b7a87552295f746f",
                "md5": "27eaeb6d7dd0ad4cbd1e2ca655dae254",
                "sha256": "cfa7872716fad5da6a929faa2825552a116a4d9712c97d8c0ae0a69b9ec99257"
            },
            "downloads": -1,
            "filename": "django-jet-new-2.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "27eaeb6d7dd0ad4cbd1e2ca655dae254",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 832297,
            "upload_time": "2023-07-14T22:47:19",
            "upload_time_iso_8601": "2023-07-14T22:47:19.108006Z",
            "url": "https://files.pythonhosted.org/packages/2f/e3/007c74cd5505c972159e7bf3cb703c7e386be37f5522b7a87552295f746f/django-jet-new-2.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-14 22:47:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "geex-arts",
    "github_project": "django-jet",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "django-jet-new"
}
        
Elapsed time: 0.10706s