Django CMS Admin Style

3.3.1 · active · verified Fri Apr 17

djangocms-admin-style provides a clean, modern, and user-friendly CSS styling layer for the Django admin interface, specifically tailored for django CMS projects. It aims to improve the visual consistency and user experience of the Django administration backend. The current version is 3.3.1, and it maintains a regular release cadence, often aligning with Django and django CMS major versions to ensure compatibility and address styling regressions.

Common errors

Warnings

Install

Imports

Quickstart

Add 'djangocms_admin_style' to your project's `INSTALLED_APPS` in `settings.py`. It is crucial that it appears *before* `django.contrib.admin` for its styles to take precedence. No additional URL configurations are typically needed as it overrides existing admin static files.

# settings.py
INSTALLED_APPS = [
    'djangocms_admin_style',  # Must be before 'django.contrib.admin'
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # ... your other apps
]

# No changes required in urls.py for basic styling.

view raw JSON →