mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
7 lines
136 B
Python
7 lines
136 B
Python
from django.conf import settings
|
|
|
|
|
|
def config_context(request):
|
|
return {
|
|
"config": {"site_name": settings.SITE_NAME},
|
|
}
|