From 209345716fe125046a85d5e5a86a0fa6ce00f95f Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Wed, 4 Jul 2012 23:57:08 -0400 Subject: Fix #16: page title set in context_processor --- context_processors.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 context_processors.py (limited to 'context_processors.py') diff --git a/context_processors.py b/context_processors.py new file mode 100644 index 0000000..a4b0796 --- /dev/null +++ b/context_processors.py @@ -0,0 +1,4 @@ +from django.conf import settings + +def app_name(context): + return {'app_name' : settings.APP_NAME} \ No newline at end of file -- cgit