mirror of
https://git.cmoser.eu/tinytools/django-tinywiki.git
synced 2026-02-04 06:06:33 +01:00
20 lines
578 B
Python
20 lines
578 B
Python
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',
|
|
}
|
|
}
|