Skip to main content

A Django app to check that all models have been added to the Django admin site.

Project description

django-check-admin is a Django app that adds a system check to verify that all models have been registered with the Django admin site. This check is useful if all models of a project should normally be registered.

Installation

Install the package with pip:

$ pip install django-check-admin

Add 'checkadmin' to INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'checkadmin',
]

Running

Use the Django management command check:

$ python manage.py check

If a model is not registered with the Django admin site, an error will be emitted. For example:

The model myapp.MyModel is not registered with an admin site.

If specific models should be ignored by the check, use checkadmin.ignore():

import checkadmin
from myapp.models import MyModel

checkadmin.ignore(MyModel)

Now, even if MyModel is not registered with an admin site, an error will not be emitted.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page