Skip to main content

No project description provided

Project description

django-admin-applist-order

A simple Django middleware to reorder the admin app list and models from a single dict in settings.py.

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.5.0.tar.gz (7.1 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.5.0-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file django_admin_applist_order-0.5.0.tar.gz.

File metadata

  • Download URL: django_admin_applist_order-0.5.0.tar.gz
  • Upload date:
  • Size: 7.1 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.5.0.tar.gz
Algorithm Hash digest
SHA256 d9d7b65baceb3ca4502a5716d7d6a2dfea344058b39fafc9488b6888551fee32
MD5 ed66678b435652ed9ba25afd0708bc21
BLAKE2b-256 76888dbbd0a52a642965f31406a8b456eb57e734b5dee67bc1341277faf1921e

See more details on using hashes here.

File details

Details for the file django_admin_applist_order-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_admin_applist_order-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0fb2696c85e8a9a602b144e1ccce7f14970ea40f0728e4a1a0fc9414b3562204
MD5 47939a370969b74c734ab2a61286dad1
BLAKE2b-256 a4293bd3e20cd2ebec622ddc61eb76d45385b2f1ab6f60b372b450cc0514ecf4

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