Files
Pinry/pinry/core/context_processors.py

9 lines
128 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,
}
2012-08-01 21:30:18 +00:00