Files
Pinry/pinry/core/context_processors.py

8 lines
127 B
Python
Raw Normal View History

2012-07-25 01:58:40 +00:00
from django.conf import settings
def template_settings(request):
return {
'site_name': settings.SITE_NAME,
}