Files
Pinry/pinry/core/context_processors.py
2012-07-25 01:58:40 +00:00

8 lines
127 B
Python

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