This is a small Django application which automatically registers all found models withtin the current project into the admin area.
- Add all found models from other installed applications into admin section
- Configurable exclusion of specific applications and models
- Auto exclude models from stock applications of Django
To install the latest release, just using pip:
pip install django-quickadmin
Then insert 'quickadmin' into INSTALLED_APPS inside settings module:
INSTALLED_APPS = (
'django.contrib.admin',
...
'quickadmin',
...
)
Please be sure that 'django.contrib.admin' is present, otherwise Django will throw error at starting
For any questions or comments regarding this application, please email to me[at]zniper.net.