55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
JAZZMIN_SETTINGS = {
|
|
"site_title": "UyQur Admin",
|
|
"site_header": "UyQur",
|
|
"site_brand": "UyQur",
|
|
"site_logo": None,
|
|
"login_logo": None,
|
|
"login_logo_dark": None,
|
|
"site_logo_classes": "img-circle",
|
|
"site_icon": None,
|
|
"welcome_sign": "Welcome to the UyQur",
|
|
"copyright": "Acme UyQur Ltd",
|
|
|
|
"search_model": ["auth.User"],
|
|
"user_avatar": None,
|
|
"topmenu_links": [
|
|
{"name": "Home", "url": "admin:index", "permissions": ["auth.view_user"]},
|
|
{"model": "auth.User"},
|
|
],
|
|
|
|
"usermenu_links": [
|
|
{"name": "Support", "url": "https://github.com/farridav/django-jazzmin/issues", "new_window": True},
|
|
{"model": "auth.user"}
|
|
],
|
|
|
|
"show_sidebar": True,
|
|
"navigation_expanded": True,
|
|
"hide_apps": [],
|
|
"hide_models": ["auth.Group"],
|
|
"order_with_respect_to": ["auth"],
|
|
|
|
"custom_links": {
|
|
"books": [{
|
|
"name": "Make Messages",
|
|
"url": "make_messages",
|
|
"icon": "fas fa-comments",
|
|
"permissions": ["books.view_book"]
|
|
}]
|
|
},
|
|
|
|
"icons": {
|
|
"auth": "fas fa-users-cog",
|
|
"auth.user": "fas fa-user",
|
|
},
|
|
|
|
"default_icon_parents": "fas fa-chevron-circle-right",
|
|
"default_icon_children": "fas fa-circle",
|
|
|
|
|
|
"use_google_fonts_cdn": True,
|
|
"show_ui_builder": False,
|
|
|
|
"changeform_format": "collapsible",
|
|
"language_chooser": False,
|
|
}
|