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