Skip to main content

Admin index for Django.

Project description

Version:
1.1.0
Download:

https://pypi-hypernode.com/pypi/django_admin_index

Source:

https://github.com/maykinmedia/django-admin-index

Keywords:

django, admin, dashboard

Build status coverage Lintly BSD License Supported Python versions Supported Django versions

About

This extension enables you to group, order and customize the Django admin index page without too much hassle or visual changes.

There are 2 concepts: Application groups and Application links. You can create an application group and add any model to it in the Django admin, under Admin index. Whether the models are shown to the user, depends on the regular Django permissions and whether it’s registered in the admin.

An application link is simply a URL with a name that you can add to an application group. It shows as a regular Django model.

One final change in the Django admin is the removal of the App lists, that link to a list of models within an App. This concept became obsolete.

Installation

You can install django_admin_index either via the Python Package Index (PyPI) or from source.

To install using pip,:

$ pip install -U django_admin_index

Usage

To use this with your project you need to follow these steps:

  1. Install the django_admin_index library:

    $ pip install django_admin_index
  2. Add django_admin_index and ordered_model to INSTALLED_APPS in your Django project’s settings.py. Make sure that django_admin_index comes before django.contrib.admin:

    INSTALLED_APPS = (
        'django_admin_index',
        'ordered_model',
        ...,
        'django.contrib.admin',
    )

    Note that there is no dash in the module name, only underscores.

  3. Add django_admin_index.context_processors.dashboard to the context processors in your Django project’s settings.py:

    TEMPLATES = [
        {
            ...
            'OPTIONS': {
                'context_processors': [
                    ...
                    'django_admin_index.context_processors.dashboard'
                ],
            },
        },
    ]
  4. Create the database tables by performing a database migration:

    $ python manage.py migrate admin_index
  5. Go to the Django admin of your site and look for the “Application groups” section.

Configuration

There are 2 settings you can add to your settings.py:

  • ADMIN_INDEX_SHOW_REMAINING_APPS (defaults to False)

    Show all models that are not added a to an Application group in a group called “Miscellaneous” for staff users.

  • ADMIN_INDEX_SHOW_REMAINING_APPS_TO_SUPERUSERS (defaults to True)

    Show all models that are not added a to an Application group in a group called “Miscellaneous” for super users users.

  • ADMIN_INDEX_AUTO_CREATE_APP_GROUP (defaults to False)

    Automaticly creates an Application group, based on the app_label, for all the models that would be in the “Miscellaneous” group. If True, your Django admin will initially look as it normally would.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_admin_index-1.1.0.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

django_admin_index-1.1.0-py2.py3-none-any.whl (22.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django_admin_index-1.1.0.tar.gz.

File metadata

  • Download URL: django_admin_index-1.1.0.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.2

File hashes

Hashes for django_admin_index-1.1.0.tar.gz
Algorithm Hash digest
SHA256 0be78d2488956428e9f0102fff298253fc20f6ad1d02942da18542f31e5b02b6
MD5 68caec4e3b5611e33a1487c1e5b58531
BLAKE2b-256 eb02da436f002b0525a20579e8653d4f63621ac2eea4a38657e4531b32575a15

See more details on using hashes here.

File details

Details for the file django_admin_index-1.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_admin_index-1.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.2

File hashes

Hashes for django_admin_index-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 078b2f3316fbb3646ee74912c8c7482b545f7dfef3f74ca415ca56e4dd1f52f1
MD5 a4060a589a9e70d53c34165a2c392edd
BLAKE2b-256 5b2429d1c80ef1dfda7dd014ecf6f1a927e61067b21fe865a2bff34d1dabe1c7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page