mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
9 lines
128 B
Python
9 lines
128 B
Python
from django.conf import settings
|
|
|
|
|
|
def template_settings(request):
|
|
return {
|
|
'site_name': settings.SITE_NAME,
|
|
}
|
|
|