Modern template for Django admin interface
Project description
Django Admin Volt
Modern template for Django Admin Interface coded on top of Volt Dashboard, an open-source Boostrap 5
design.
Actively supported by AppSeed via
Discord
.
Links & Resources
- Django Volt Dashboard - free starter with the same design
- Django Volt Dashboard - LIVE Demo
Why Django Admin Volt
- Modern
Bootstrap 5
Design Responsive Interface
Minimal Template
overridingEasy integration
How to use it
Install the package via
PIP
$ pip install django-admin-volt
// OR
$ pip install git+https://github.com/app-generator/django-admin-volt.git
Add
admin_volt
application to theINSTALLED_APPS
setting of your Django projectsettings.py
file (note it should be beforedjango.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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.