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