mirror of
https://git.cmoser.eu/tinytools/django-tinywiki.git
synced 2026-02-04 06:06:33 +01:00
2025.11.15 11:34:32 (cachyos)
This commit is contained in:
@@ -4,7 +4,7 @@ from django.conf import settings
|
||||
from django_project.settings import STATIC_URL
|
||||
|
||||
TINYWIKI_USER_CONFIG = getattr(settings,
|
||||
"TINYWIKI_USER_CONFIG",
|
||||
"TINYWIKI_USER_CONFIG",
|
||||
{
|
||||
"username":"TinyWiki",
|
||||
"email":"tinywiki@example.com"
|
||||
@@ -27,8 +27,12 @@ TINYWIKI_BOOSTRAP_TAGS = {
|
||||
}
|
||||
}
|
||||
|
||||
TINYWIKI_BASE_TEMPLATE = getattr(settings,
|
||||
"TINYWIKI_BASE_TEMPLATE",
|
||||
"tinywiki/base.html")
|
||||
TINYWIKI_BASE_TEMPLATE = getattr(
|
||||
settings,
|
||||
"TINYWIKI_BASE_TEMPLATE",
|
||||
getattr(settings,
|
||||
"BASE_TEMPLATE",
|
||||
"tinywiki/base.html")
|
||||
)
|
||||
|
||||
USE_BOOTSTRAP = getattr(settings,"USE_BOOTSTRAP",False)
|
||||
USE_BOOTSTRAP = getattr(settings, "USE_BOOTSTRAP", False)
|
||||
|
||||
Reference in New Issue
Block a user