Skip to main content

Django admin implementation of volt admin dashboard

Project description

Django Volt Admin

Django Volt is a django admin customization for https://github.com/themesberg/volt-bootstrap-5-dashboard

Samples

alt text

alt text

Quick start

  1. Add "volt" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'volt',
    ]
    
  2. Include Templates from the volt admin customization

    TEMPLATES = [
        {
            'BACKEND': 'django.template.backends.django.DjangoTemplates',
            'DIRS': [
                BASE_DIR /'volt/templates',
            ],
            'APP_DIRS': True,
            'OPTIONS': {
                'context_processors': [
                    'django.template.context_processors.debug',
                    'django.template.context_processors.request',
                    'django.contrib.auth.context_processors.auth',
                    'django.contrib.messages.context_processors.messages',
                ],
            },
        },
    ]
    
  3. Start the development server and visit http://127.0.0.1:8000/admin/ to view (you'll need the Admin app enabled).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-volt-admin-1.0.2.tar.gz (4.6 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page