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