Modern template for Django rtl admin interface
Project description
Django Admin Material
Modern template for Django Admin Interface coded on top of Material Dashboard, an open-source Boostrap 5
design from Creative-Tim
.
Actively supported by AppSeed via
Discord
.
Links & Resources
- UI Kit: Material Dashboard BS5
v3.0.5
by Creative-Tim - Django Material Dashboard - free starter with the same design
- Django Material Dashboard - LIVE Demo
Black Friday - 75%OFF
The campaign is active until
30.NOV
and applies to all products and licenses.
Why Django Admin Material
- Modern
Bootstrap 5
Design Responsive Interface
Minimal Template
overridingEasy integration
How to use it
Install the package via
PIP
$ pip install django-admin-material-dashboard
// OR
$ pip install git+https://github.com/app-generator/django-admin-material-dashboard.git
Add
admin_material
application to theINSTALLED_APPS
setting of your Django projectsettings.py
file (note it should be beforedjango.contrib.admin
):
INSTALLED_APPS = (
...
'admin_material.apps.AdminMaterialDashboardConfig',
'django.contrib.admin',
)
Add
LOGIN_REDIRECT_URL
andEMAIL_BACKEND
of your Django projectsettings.py
file:
LOGIN_REDIRECT_URL = '/'
# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
Add
admin_material
urls in your Django Projecturls.py
file
from django.urls import path, include
urlpatterns = [
...
path('', include('admin_material.urls')),
]
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
Material Dashboard Theme -
Admin Section
Material Dashboard Theme -
Admin Widgets
Django Admin Material - 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.
Source Distribution
File details
Details for the file django-admin-material-dashboard-rtl-1.0.0.tar.gz
.
File metadata
- Download URL: django-admin-material-dashboard-rtl-1.0.0.tar.gz
- Upload date:
- Size: 15.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d75bba5195dc6a2248c208c3294457a5eef9ff23dd9ad36e7e9c32bf242e0877 |
|
MD5 | 699b909c9c09352622443b73971538ae |
|
BLAKE2b-256 | 817d64a3ef1b46242bdc75ce77852ebe24b264278af8bfbd19c69e19643a6f6a |