38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from evibes.settings.base import EVIBES_VERSION
|
|
from evibes.settings.constance import CONSTANCE_CONFIG
|
|
|
|
DAISY_SETTINGS: dict = {
|
|
"SITE_LOGO": "/static/favicon.ico",
|
|
"EXTRA_STYLES": [
|
|
f"https://api.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/static/css/constance.css", # type: ignore
|
|
],
|
|
"EXTRA_SCRIPTS": [],
|
|
"SHOW_CHANGELIST_FILTER": True,
|
|
"DONT_SUPPORT_ME": True,
|
|
"SIDEBAR_FOOTNOTE": f"eVibes {EVIBES_VERSION} by Wiseless",
|
|
"LOAD_FULL_STYLES": True,
|
|
"APPS_REORDER": {
|
|
"django_celery_results": {
|
|
"hide": True,
|
|
"app": "django_celery_results",
|
|
},
|
|
"django_celery_beat": {
|
|
"icon": "fa fa-solid fa-timeline",
|
|
"hide": False,
|
|
"app": "django_celery_beat",
|
|
"priority": 1,
|
|
},
|
|
"django_mailbox": {
|
|
"icon": "fa fa-solid fa-envelope",
|
|
"hide": False,
|
|
"app": "django_mailbox",
|
|
"priority": 2,
|
|
},
|
|
"django_summernote": {
|
|
"icon": "fa fa-solid fa-note-sticky",
|
|
"hide": False,
|
|
"app": "django_summernote",
|
|
"priority": 3,
|
|
},
|
|
},
|
|
}
|