Modern Django Admin
A beautiful, mobile-responsive admin theme that makes Django's admin interface feel fresh and modern
pip install adminita
Everything you need
Built with modern web technologies and best practices
Modern Design
Beautiful, clean interface built with Tailwind CSS v4 for a contemporary look and feel.
Dark Mode
Built-in dark mode support that respects user preferences and provides a comfortable viewing experience.
Mobile Responsive
Works perfectly on larger devices. Responsive navigation and touch-friendly controls for phones and tablets
Easy Installation
Simple pip install and you're ready to go. Just add to INSTALLED_APPS.
Customizable
Easy to customize colors and styling using Tailwind CSS theme configuration.
Django Native
Built specifically for Django admin, no external dependencies required.
Quick Start
Get up and running in minutes
Installation Steps
Install via pip
pip install adminita
Add to INSTALLED_APPS
INSTALLED_APPS = [
"adminita", # Must be before django.contrib.admin
"django.contrib.admin",
...
]
Add customization to Project-level urls.py file
from django.contrib import admin
admin.site.site_header = "Your Site Name"
admin.site.site_title = "Your Site Title"
admin.site.index_title = "Welcome to Your Site"
Collect static files
python manage.py collectstatic
That's it!
Your Django admin now has a modern, beautiful interface with dark mode support.
View The Live Demo
Log in to view Adminita in 'Read Only' mode.
Use guest@adminita.demo with password demopassword123