Skip to content

A base toolkit for building a Django-Suit compatible Admin theme.

License

Notifications You must be signed in to change notification settings

avryhof/custom_admin

Repository files navigation

Custom Admin Base

A base toolkit for building a Django-Suit compatible Admin theme.

Installation

pip install django-custom-admin-base

settings.py

This app should come before other admin style modifiers, since it replaces admin/base.html and admin/base_site.html

INSTALLED_APPS = [
    "...",
    "custom_admin",
    "your_app_to_extend_custom_admin",
    "...",
    "django.contrib.admin",
]

Migrations and Static files

manage.py migrate custom_admin
manage.py collectstatic

About

A base toolkit for building a Django-Suit compatible Admin theme.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published