Django 5+. django-admin-interface theme

 you're looking to use django-admin-interface, which is a modern, customizable theme for the Django admin — and it works great with Django 5+.

Let me walk you through:

🎨 What is django-admin-interface?

It’s a drop-in Django app that skins the admin interface with a clean UI, theme editor, and dark mode support — without rewriting your templates or forms.

 ✅ Installation

pip install django-admin-interface

 python manage.py migrate admin_interface

python manage.py collectstatic --clear

 

INSTALLED_APPS = (
    'admin_interface',
    'colorfield',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.admin',

Comments