Modern template for Django admin interface
Project description
Django Admin Datta
Modern template for Django that covers Admin Section
, all authentication pages (registration included) crafted on top of Datta Able,
an open-source Bootstrap
design from CodedThemes.
Actively supported by AppSeed via
Discord
.
Links & Resources
- Django Datta Able -
Product page
Features
: Fully-configured,CI/CD
via Render
- UI Kit: Datta Able (open-source, Bootstrap 4 version) by CodedThemes
- Sections Covered:
Admin Section
, reserved forsuperusers
All pages
managed byDjango.contrib.AUTH
Registration
pageMisc pages
: colors, icons, typography, blank-page
Why Django Datta Able
- Modern Bootstrap Design
Responsive Interface
Minimal Template
overridingEasy integration
How to use it
Install the package via
PIP
$ pip install django-admin-datta
// OR
$ pip install git+https://github.com/app-generator/django-admin-datta.git
Add
admin_datta
application to theINSTALLED_APPS
setting of your Django projectsettings.py
file (note it should be beforedjango.contrib.admin
):
INSTALLED_APPS = (
...
'admin_datta.apps.AdminDattaConfig',
'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_datta
urls in your Django Projecturls.py
file
from django.urls import path, include
urlpatterns = [
...
path('', include('admin_datta.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, 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_datta
< 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
| | |-- base-auth.html # Masterpage for Auth Pages
| |
| |-- pages/
| |-- index.html # Dashboard Page
| |-- profile.html # Profile 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 index.html
these are the steps:
Step 1
: create thetemplates
DIRECTORY inside your appStep 2
: configure the project to use this new template directory- Edit
settings.py
TEMPLATES section
- Edit
Step 3
: copy thefooter.html
from the original location (inside your ENV) and save it to theYOUR_APP/templates
DIR- Source PATH:
<YOUR_ENV>/LIB/admin_datta/templates/pages/index.html
- Destination PATH:
YOUR_APP/templates/pages/index.html
- Source PATH:
- Edit the
index.html
(Destination PATH)
At this point, the default version of the index.html
shipped in the library is ignored by Django.
In a similar way, all other files and components can be customized easily.
Datta Able PRO Version
For more components, pages and priority on support, feel free to take a look at this Django starter:
Designed for those who like bold elements and beautiful websites, Datta Able is the most stylish Admin Design compare to all other Bootstrap Templates. It comes with high feature-rich pages and components with fully developer-centric code.
- Django Datta PRO - product page
Enhanced UI
- more pages and componentsPriority
on support
Django Admin Datta - 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-datta-1.0.11.tar.gz
.
File metadata
- Download URL: django-admin-datta-1.0.11.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dc5f43cac84da01df6952615d1bec849b9931f4494e5a2a22770d04ba776ae7 |
|
MD5 | 071b8599259160409ae47e6538e48f4a |
|
BLAKE2b-256 | c8371a1ef5ac02b16876a6df85c7de1fd4d32bc874018c73f6686641a18e17d6 |