Django Template Volt
Open-source template for Django admin section styled with Volt Dashboard Design (free version)
Modern template for Django admin interface coded on top of Volt Dashboard (free version) from Themesberg. Volt Dashboard is a free and open-source Bootstrap 5 Admin Dashboard featuring over 100 components, 11 example pages, and 3 plugins with Vanilla JS.
Django Template Volt - PyPi Page
Django Volt Dashboard - Open-source starter that uses the same UI Kit
Django Volt Dashboard - LIVE Demo
Why Django Admin Volt
Django Admin Volt
Modern
Bootstrap 5
DesignResponsive Interface
Minimal Template
overridingEasy integration

Installation
$ pip install django-admin-volt
// OR
$ pip install git+https://github.com/app-generator/django-admin-volt.git
Add admin_volt
application to the INSTALLED_APPS
settings of your Django project settings.py
file (note it should be before django.contrib.admin
):
INSTALLED_APPS = (
...
'admin_volt.apps.AdminVoltConfig',
'django.contrib.admin',
)
Collect static if you are in production environment:
$ python manage.py collectstatic
Start the app
$ # Set up the database
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Create the superuser
$ python manage.py createsuperuser
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
Access the admin
section in the browser: http://127.0.0.1:8000/
\
Screenshots
Volt Theme -
Admin Section

Volt Theme -
Dashboard

Django Admin Volt - Modern Admin Interface provided by AppSeed
Last updated
Was this helpful?