This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/core/context.py
2022-11-06 13:48:04 -07:00

8 lines
136 B
Python

from django.conf import settings
def config_context(request):
return {
"config": {"site_name": settings.SITE_NAME},
}