diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-04 23:57:08 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-04 23:57:08 -0400 |
commit | 209345716fe125046a85d5e5a86a0fa6ce00f95f (patch) | |
tree | 610a192cfae1db694c8764ae9b32597ea2f88aaf /context_processors.py | |
parent | d781f651d8915973e961a6f5b3bc11fa7ed215b7 (diff) | |
download | hyperkitty-209345716fe125046a85d5e5a86a0fa6ce00f95f.tar.gz hyperkitty-209345716fe125046a85d5e5a86a0fa6ce00f95f.tar.xz hyperkitty-209345716fe125046a85d5e5a86a0fa6ce00f95f.zip |
Fix #16: page title set in context_processor
Diffstat (limited to 'context_processors.py')
-rw-r--r-- | context_processors.py | 4 |
1 files changed, 4 insertions, 0 deletions
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 |