Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.12 KB

File metadata and controls

35 lines (23 loc) · 1.12 KB
https://travis-ci.org/zniper/django-quickadmin.svg?branch=master https://coveralls.io/repos/zniper/django-quickadmin/badge.svg?branch=master

This is a small Django application which automatically registers all found models withtin the current project into the admin area.

Features

  • 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

Installation

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.