Files
Pinry/pinry/core/context_processors.py
2012-08-01 21:30:18 +00:00

9 lines
128 B
Python

from django.conf import settings
def template_settings(request):
return {
'site_name': settings.SITE_NAME,
}