pasteque/paste/context_processors.py
Alexandre Henriet b632e8f869 first commit
2013-04-04 19:37:30 +02:00

9 lines
256 B
Python

from django.conf import settings
def app_details(request):
"""Passes settings details to the templates."""
return {'APP_NAME': settings.APP_NAME,
'APP_VERSION': settings.APP_VERSION,
'DISPLAY_NAME': settings.DISPLAY_NAME}