mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +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},
|
|
}
|