Skip to content

Django Admin Volt - Free template for Django Admin Interface | AppSeed

License

Notifications You must be signed in to change notification settings

divergentsigns/django-admin-volt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modern template for Django Admin Interface coded on top of Volt Dashboard, an open-source Boostrap 5 design.

Actively supported by AppSeed via Email and Discord.


Links & Resources


Why Django Admin Volt

  • Modern Bootstrap 5 Design
  • Responsive Interface
  • Minimal Template overriding
  • Easy integration

Django Admin Volt - Open-source Boostrap 5 Design (mobile view).


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 the INSTALLED_APPS setting 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

Django Admin Volt - Main Django Dashboard screen.


Volt Theme - Dashboard

Django Admin Volt - Template project for Django provided by AppSeed.



Django Admin Volt - Modern Admin Interface provided by AppSeed

About

Django Admin Volt - Free template for Django Admin Interface | AppSeed

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 60.5%
  • HTML 18.4%
  • SCSS 16.8%
  • Python 2.3%
  • JavaScript 2.0%