Skip to main content

No project description provided

Project description

django-admin-applist-order

Order the Django admin app list — the apps shown on the admin index, and the models within each app — from a single dict in your settings.py.

It works through a middleware that post-processes the admin's response, so you don't need to swap your AdminSite or change any admin registration. Add one line to MIDDLEWARE, define the setting, done.

Install

pip install django-admin-applist-order

Setup

Add the middleware (this is the only required step):

MIDDLEWARE = [
    # ...
    "django_admin_applist_order.middleware.AppListOrderMiddleware",
]

Usage

Define ADMIN_APPS_DISPLAY_ORDER in settings.py. Keys are app labels (the app's folder name, e.g. core, auth).

ADMIN_APPS_DISPLAY_ORDER = {
    "APP_NAME": ["MODEL1", "MODEL2", "MODEL3"],
}

Behaviour:

  • Apps listed in the dict appear first, in dict order. Apps not listed follow, sorted alphabetically by their display name.
  • Models listed for an app appear first, in that order, followed by any unlisted models sorted alphabetically.
  • An empty list means "show all of this app's models, sorted alphabetically".
  • If the setting is missing or empty, the package does nothing.

For example, ordering the blog app's models first, and then the auth app's models:

ADMIN_APPS_DISPLAY_ORDER = {
    "blog": ["Author", "Post"],  # these first, alphabetical order will show the rest of the blog app models
    "auth": [],  # listed app, but all models will appear by  alphabetical
}

How it works

Django builds the app list in the response context under app_list (the index page) and available_apps (the nav sidebar). The middleware reorders those lists in process_template_response according to your setting. Because it only touches the rendered context, it composes cleanly with a default admin.site or any custom AdminSite.

Project details


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_applist_order-0.1.1a0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_admin_applist_order-0.1.1a0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file django_admin_applist_order-0.1.1a0.tar.gz.

File metadata

  • Download URL: django_admin_applist_order-0.1.1a0.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.11.7 Linux/6.8.0-124-generic

File hashes

Hashes for django_admin_applist_order-0.1.1a0.tar.gz
Algorithm Hash digest
SHA256 a8ac8c343fc3ac5777056465b0a39c5fdfe5df87ecfa58aec6242c2a86e981d9
MD5 e3db069076b57d5e16a71cfd04bd0e1d
BLAKE2b-256 4d07c6c968f9b5d126d17731bb7bbf79fbf0e35de6309bfe123eb4ea6244af5f

See more details on using hashes here.

File details

Details for the file django_admin_applist_order-0.1.1a0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_admin_applist_order-0.1.1a0-py3-none-any.whl
Algorithm Hash digest
SHA256 9af6c06d67cc158913e3641a338617b7dcdf45ecc82bde7074ffb8ea767177d7
MD5 7ea95a17bb59dcd99c90d02fb142d1c9
BLAKE2b-256 796164cccc09873df98b288569a5f2e6e107e01518dc5fe05a0ff31b9ff94046

See more details on using hashes here.

Supported by

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