2025.09.14-18:02:28
This commit is contained in:
19
tinywiki/settings.py
Normal file
19
tinywiki/settings.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from pathlib import Path
|
||||
from django.conf import settings
|
||||
|
||||
TINYWIKI_USER_CONFIG = getattr(settings,
|
||||
"TINYWIKI_USER_CONFIG",
|
||||
{
|
||||
"username":"TinyWiki",
|
||||
"email":"tinywiki@example.com"
|
||||
})
|
||||
|
||||
TINYWIKI_USER_LOOKUP = getattr(settings,
|
||||
"TINYWIKI_USER_LOOKUP",
|
||||
{'username':"TinyWiki"})
|
||||
|
||||
TINYWIKI_BOOSTRAP_TAGS = {
|
||||
'img': {
|
||||
'class':'img-fluid',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user