mirror of
https://github.com/pinry/pinry.git
synced 2025-11-12 16:15:43 +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,
|
|
}
|