Django admin theme based adminlte & bootstrap
Project description
Django jazzmin (Jazzy Admin)
Drop-in theme for django admin, that utilises AdminLTE & Bootstrap to make yo’ admin looky jazzy
This was initially a Fork of https://github.com/wuyue92tree/django-adminlte-ui that I refactored so much I thought it deserved its own package, big thanks to @wuyue92tree for all of his initial hard work, I am still patching into that project were possible, but this project is taking a slightly different direction.
Installation
pip install django-jazzmin
Setup & configuration
# settings.py
INSTALLED_APPS = [
# Place before admin
'jazzmin',
'django.contrib.admin',
[...]
]
JAZZMIN_SETTINGS = {
# Choose from black, black-light, blue, blue-light, green, green-light, purple, purple-light,
# red, red-light, yellow, yellow-light
'skin': 'blue',
# title of the window
'site_title': 'Django Admin',
# Title on the login screen
'site_header': 'Django',
# square logo to use for your site, must be present in static files, used for favicon and brand on top left
'site_logo': 'admin/dist/img/default-log.svg',
# Welcome text on the login screen
'welcome_sign': 'Welcome',
# Copyright on the footer
'copyright': 'Acme Ltd',
# Wether to aut expand the menu
'navigation_expanded': True,
# The model admin to search from the search bar, search bar omitted if excluded
'search_model': 'profiles.Profile',
# Field name on user model that contains avatar image
'user_avatar': 'avatar',
# Hide these apps when generating menu
'hide_apps': ['auth'],
# Hide these models when generating menu
'hide_models': ['auth.user'],
# List of apps to base menu ordering off of
'order_with_respect_to': ['first_app', 'second_app'],
# Custom links to append to app groups, keyed on app name
'custom_links': {
'first_app': [
{'name': 'Custom link', 'url': '/', 'icon': 'fa-user', 'permissions': []}
]
},
'icons': {
'auth': 'fa-people',
'auth.user': 'fa-user',
}
}
Screenshots
Thanks
Original Package https://github.com/wuyue92tree/django-adminlte-ui
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-jazzmin-1.0.1.tar.gz.
File metadata
- Download URL: django-jazzmin-1.0.1.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2f1eb6b62bc64cc85fb497acf7ef0cc00c1bc39601cc24587b9418ad8146a48
|
|
| MD5 |
30b99dc4f5b52aee117ae3460529f36e
|
|
| BLAKE2b-256 |
f894226e89644426a594041f097521a150168bb0b68d3bf716f2833f1ae9827e
|
File details
Details for the file django_jazzmin-1.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: django_jazzmin-1.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e17fbb54551bdb50b0b500320c7d614ef18c143edecfb8eceebb0c4d1fea70c7
|
|
| MD5 |
722f3a9e07a6b3dcf96362951fcba861
|
|
| BLAKE2b-256 |
6d534f2710fdd897898650cd2bcc7be3f611e65079c9d222a620943c0146eaf0
|