123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- JAZZMIN_SETTINGS = {
-
- "site_title": "ShariX Admin",
-
- "site_header": "ShariX Platform",
-
- "site_brand": "ShariX Platform",
-
- "site_logo": "SharixAdmin/img/logo.svg",
-
- "login_logo": None,
-
- "login_logo_dark": None,
-
- "site_logo_classes": "img-circle",
-
- "site_icon": None,
-
- "welcome_sign": "Welcome to the ShariX Admin",
-
- "copyright": "Acme Library Ltd",
-
-
- "search_model": ["SharixAdmin.SharixUser"],
-
- "user_avatar": None,
-
-
-
-
- "topmenu_links": [
-
- {"name": "Home", "url": "admin:index", "permissions": ["auth.view_user"]},
-
-
-
- {"model": "SharixAdmin.SharixUser"},
-
- {"app": "tickets"},
- ],
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- "icons": {
- "auth": "fas fa-users-cog",
- "auth.user": "fas fa-user",
- "auth.Group": "fas fa-users",
- "SharixAdmin": "fas fa-users-cog",
- "SharixAdmin.SharixUser": "fas fa-user",
- "tickets.Task": "fas fa-check",
- "tickets.TaskList": "fas fa-list",
- "tickets.Comment": "fas fa-comment",
- "tickets.Attachment": "fas fa-file",
- },
-
-
-
-
-
-
-
-
-
-
-
-
- "custom_css": None,
- "custom_js": None,
-
- "use_google_fonts_cdn": True,
-
- "show_ui_builder": True,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- JAZZMIN_UI_TWEAKS = {
- "navbar_small_text": True,
- "footer_small_text": True,
- "body_small_text": False,
- "brand_small_text": True,
- "brand_colour": "navbar-light",
- "accent": "accent-navy",
- "navbar": "navbar-navy navbar-dark",
- "no_navbar_border": False,
- "navbar_fixed": False,
- "layout_boxed": False,
- "footer_fixed": False,
- "sidebar_fixed": True,
- "sidebar": "sidebar-light-navy",
- "sidebar_nav_small_text": False,
- "sidebar_disable_expand": False,
- "sidebar_nav_child_indent": False,
- "sidebar_nav_compact_style": True,
- "sidebar_nav_legacy_style": False,
- "sidebar_nav_flat_style": False,
- "theme": "default",
- "dark_mode_theme": None,
- "button_classes": {
- "primary": "btn-outline-primary",
- "secondary": "btn-outline-secondary",
- "info": "btn-outline-info",
- "warning": "btn-outline-warning",
- "danger": "btn-outline-danger",
- "success": "btn-outline-success"
- },
- "actions_sticky_top": False
- }
|