Description: A Django application to configure some Django Admin settings
Copyright: 2023 Fabio Castelli (Muflone) muflone@muflone.com
License: GPL-3+
Source code: https://github.com/muflone/django-admin-settings
Documentation: http://www.muflone.com/django-admin-settings/
Django Admin Settings allows you to configure some settings in Django Admin.
The Python dependencies for the server part are listed in the
requirements.txt
file.
- Python >= 3.9
- Django 4.1.x (https://pypi.org/project/Django/)
To install Django Admin Settings application you can configure the
INSTALLED_APPS
setting like this:
INSTALLED_APPS = [
'django_admin_settings',
...
]
The ListDisplay
models allows you to set the visible fields in the records
list page in Django Admin.
You can simply configure your models by settings:
- Model
- Field name
- Sort order number
- Active status
The ListDisplayLink
models allows you to set the clickable fields in the
records list page in Django Admin.
You can simply configure your models by settings:
- Model
- Field name
- Sort order number
- Active status
The ListFilter
models allows you to create filters in the records list page
in Django Admin.
You can simply configure your models by settings:
- Model
- Field name
- Sort order number
- Active status
ADMIN_INDEX_TITLE
: Index page titleADMIN_SITE_HEADER
: Administration headerADMIN_SITE_TITLE
: Administration pages title