django-djet2


Namedjango-djet2 JSON
Version 1.0.15 PyPI version JSON
download
home_pagehttps://github.com/djungle-io/django-djet2
SummaryNext Generation of django-jet (Modern template for Django admin interface with improved functionality)
upload_time2023-01-11 16:57:10
maintainerDjungle Studio
docs_urlNone
author
requires_python>=3
licenseAGPLv3
keywords django admin
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ============
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": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/8e/e8/e19cbdb4b9d03069d69c658538cb70a9031a77fbcb9603c11ec8da238261/django-djet2-1.0.15.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.15",
    "split_keywords": [
        "django",
        "admin"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9f872f614ffdd951f4df482e1e51649e7177523585c621d0c45a80d62fee986",
                "md5": "723fd8fab20f22ce204291e584963dea",
                "sha256": "5cba25a5c0531a7ceafd5650600649a69a88bc61c0fb0a7cdda313c0263bb0ea"
            },
            "downloads": -1,
            "filename": "django_djet2-1.0.15-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "723fd8fab20f22ce204291e584963dea",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 980535,
            "upload_time": "2023-01-11T16:57:07",
            "upload_time_iso_8601": "2023-01-11T16:57:07.810858Z",
            "url": "https://files.pythonhosted.org/packages/f9/f8/72f614ffdd951f4df482e1e51649e7177523585c621d0c45a80d62fee986/django_djet2-1.0.15-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee8e19cbdb4b9d03069d69c658538cb70a9031a77fbcb9603c11ec8da238261",
                "md5": "daa815ecbaae94f92130dd7460ff9f95",
                "sha256": "e794ec96a7bb9099608a48031a2432b5f154d11969ffb297087f6a38b5fb5a58"
            },
            "downloads": -1,
            "filename": "django-djet2-1.0.15.tar.gz",
            "has_sig": false,
            "md5_digest": "daa815ecbaae94f92130dd7460ff9f95",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 747665,
            "upload_time": "2023-01-11T16:57:10",
            "upload_time_iso_8601": "2023-01-11T16:57:10.103466Z",
            "url": "https://files.pythonhosted.org/packages/8e/e8/e19cbdb4b9d03069d69c658538cb70a9031a77fbcb9603c11ec8da238261/django-djet2-1.0.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-11 16:57:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "djungle-io",
    "github_project": "django-djet2",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-djet2"
}
        
Elapsed time: 0.02942s