Modern template for Django admin interface
Project description
Django Admin Black
Modern template for Django that covers Admin Section, all authentication pages (registration included) crafted on top of Black Dashboard, an open-source Bootstrap 5 design from Creative-Tim.
Actively supported by AppSeed via
Discord.
Links & Resources
- Django Admin Black -
Productthat uses the libraryFeatures: Fully-configured,CI/CDvia Render
- UI Kit: Black Dashboard
free versionby Creative-Tim - Sections Covered:
Admin Section, reserved forsuperusersAll pagesmanaged byDjango.contrib.AUTHRegistrationpageMisc pages: colors, icons, typography, blank-page
Why Django Black Design
- Modern Bootstrap 5 Design
Responsive InterfaceMinimal TemplateoverridingEasy integration
How to use it
Install the package via
PIP
$ pip install django-admin-black
// OR
$ pip install git+https://github.com/app-generator/django-admin-black.git
Add
admin_blackapplication to theINSTALLED_APPSsetting of your Django projectsettings.pyfile (note it should be beforedjango.contrib.admin):
INSTALLED_APPS = (
...
'admin_black.apps.AdminBlackConfig',
'django.contrib.admin',
)
Add
admin_blackurls in your Django Projecturls.pyfile.
from django.urls import path, include
urlpatterns = [
...
path('', include('admin_black.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/
How to Customize
When a template file is loaded in the controller, Django scans all template directories starting from the ones defined by the user, and returns the first match or an error in case the template is not found.
The theme used to style this starter provides the following files:
# This exists in ENV: LIB/admin_black
< UI_LIBRARY_ROOT >
|
|-- templates/ # Root Templates Folder
| |
| |-- accounts/
| | |-- auth-signin.html # Sign IN Page
| | |-- auth-signup.html # Sign UP Page
| |
| |-- includes/
| | |-- footer.html # Footer component
| | |-- sidebar.html # Sidebar component
| | |-- navigation.html # Navigation Bar
| | |-- scripts.html # Scripts Component
| |
| |-- layouts/
| | |-- base.html # Masterpage
| |
| |-- pages/
| |-- dashboard.html # Dashboard page
| |-- user.html # Settings Page
| |-- *.html # All other pages
|
|-- ************************************************************************
When the project requires customization, we need to copy the original file that needs an update (from the virtual environment) and place it in the template folder using the same path.
For instance, if we want to customize the dashboard.html these are the steps:
Step 1: create thetemplatesDIRECTORY inside your appStep 2: configure the project to use this new template directory- Edit
settings.pyTEMPLATES section
- Edit
Step 3: copy thedashboard.htmlfrom the original location (inside your ENV) and save it to theYOUR_APP/templatesDIR- Source PATH:
<YOUR_ENV>/LIB/admin_black/pages/dashboard.html - Destination PATH:
YOUR_APP/templates/pages/dashboard.html
- Source PATH:
- Edit the footer (Destination PATH)
At this point, the default version of the dashboard.html shipped in the library is ignored by Django.
In a similar way, all other files and components can be customized easily.
PRO Version
This design is a pixel-perfect Bootstrap Dashboard with a fresh, new design. Black is a completly new product built on our newest re-built from scratch framework structure that is meant to make our products more intuitive, more adaptive and, needless to say, so much easier to customize.
Features:
Up-to-date DependenciesDesign: Django Theme Black -PRO VersionSectionscovered by the design:- Admin section (reserved for superusers)
- Authentication:
Django.contrib.AUTH, Registration - All Pages available in for ordinary users
Docker,Deployment:CI/CDflow viaRender
Django Admin Black - 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-black-1.0.1.tar.gz.
File metadata
- Download URL: django-admin-black-1.0.1.tar.gz
- Upload date:
- Size: 3.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
435dba9ccb20c1884e5b53b71f6396651562de4ce9750432c48bda486b07e719
|
|
| MD5 |
3ad8066e6744cd06a805684e1c601c2f
|
|
| BLAKE2b-256 |
20720ac27052114c391657ef3e8d6f6bb57fa0b8c2ae3fc0fb9d993d832f038c
|