Skip to content

radity/django-modeladmin-reorder

This branch is up to date with bloodwithmilk25/django-modeladmin-reorder:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
nikitatonkoshkur
Aug 17, 2020
6cc5060 · Aug 17, 2020

History

52 Commits
Aug 17, 2020
Jul 30, 2014
Jul 30, 2014
Jun 10, 2015
Sep 8, 2016
Dec 31, 2015
Jul 30, 2014
Jul 30, 2014
Jul 30, 2014
Jul 30, 2014
Jul 30, 2014
Aug 17, 2020
Dec 31, 2015
Dec 31, 2015
Jul 30, 2014
Jul 30, 2014
Sep 8, 2016
Jul 30, 2014

Repository files navigation

django-modeladmin-reorder

http://img.shields.io/travis/mishbahr/django-modeladmin-reorder.svg?style=flat-square Latest Version Downloads License

Custom ordering for the apps and models in the admin app. You can also rename, cross link or exclude models from the app list.

Features

  • Reorder apps in admin index - this will allow you to position most used apps in top of the page, instead of listing apps alphabetically. e.g. sites app before the auth app
  • Rename app labels easily for third party apps without having to modify the source code. e.g. rename auth app to Authorisation for the django admin app.
  • Split large apps into smaller groups of models.
  • Reorder models within an app. e.g. auth.User model before the auth.Group model.
  • Exclude any of the models from the app list. e.g. Exclude auth.Group from the app list. Please note this only excludes the model from the app list and it doesn't protect it from access via url.
  • Cross link models from multiple apps. e.g. Add sites.Site model to the auth app.
  • Rename individual models in the app list. e.g. rename auth.User from User to Staff
  • Adds all of the above to Django 3.1 Admin Sidebar

Documentation

The full documentation is at https://django-modeladmin-reorder.readthedocs.org.

Install

Install django-modeladmin-reorder:

pip install django-modeladmin-reorder

Configuration

  1. Add admin_reorder to INSTALLED_APPS:

    INSTALLED_APPS = (
        ...
        'admin_reorder',
        ...
    )
  2. Add the ModelAdminReorder to MIDDLEWARE_CLASSES:

    MIDDLEWARE_CLASSES = (
        ...
        'admin_reorder.middleware.ModelAdminReorder',
        ...
    )
  3. Add the setting ADMIN_REORDER to your settings.py:

    ADMIN_REORDER = (
        # Keep original label and models
        'sites',
    
        # Rename app
        {'app': 'auth', 'label': 'Authorisation'},
    
        # Reorder app models
        {'app': 'auth', 'models': ('auth.User', 'auth.Group')},
    
        # Exclude models
        {'app': 'auth', 'models': ('auth.User', )},
    
        # Cross-linked models
        {'app': 'auth', 'models': ('auth.User', 'sites.Site')},
    
        # models with custom name
        {'app': 'auth', 'models': (
            'auth.Group',
            {'model': 'auth.User', 'label': 'Staff'},
        )},
    )

About

Custom ordering for the apps and models in the admin app.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 81.8%
  • Makefile 12.0%
  • HTML 6.2%