Fix lingering import statement, add context processor to expose settings to templates.

This commit is contained in:
Chris Church
2013-05-09 14:31:08 -04:00
parent fdc9422409
commit e6377a1243
4 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
from django.conf import settings as django_settings
def settings(request):
return {
'settings': django_settings,
}