summaryrefslogtreecommitdiffstats
path: root/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'context.py')
-rw-r--r--context.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/context.py b/context.py
new file mode 100644
index 00000000..f420b154
--- /dev/null
+++ b/context.py
@@ -0,0 +1,9 @@
+from django.conf import settings
+def application_settings(context):
+ return {
+ 'APP_TITLE' : settings.APP_TITLE,
+ 'APP_URL' : settings.APP_URL,
+ 'APP_KEYWORDS' : settings.APP_KEYWORDS,
+ 'APP_DESCRIPTION' : settings.APP_DESCRIPTION,
+ 'APP_INTRO' : settings.APP_INTRO
+ }