blob: d5545153ab1679a6e78a28dd3d080daa42ae64ca [file] [log] [blame]
from django.conf import settings # import the settings file
def conf_constants(request):
# return the value you want as a dictionnary. you may add multiple values in there.
return {
'SITE_NAME': settings.SITE_NAME,
'SHORT_SITE_NAME': settings.SHORT_SITE_NAME,
'VERSION': settings.VERSION,
}