From 1eb7582e6a291f2c5b3a30c408cb50f199fa6eac Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 27 Nov 2017 16:20:24 -0500 Subject: Add snippets to the home page from the configuration file --- app/dispatch/context_processors.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/dispatch/context_processors.py (limited to 'app/dispatch/context_processors.py') diff --git a/app/dispatch/context_processors.py b/app/dispatch/context_processors.py new file mode 100644 index 0000000..d6d50d5 --- /dev/null +++ b/app/dispatch/context_processors.py @@ -0,0 +1,10 @@ +from django.conf import settings + + +def additional_template_vars(request): + """ + A neat little hack to load up + additional variables into templates directly into the templates + """ + return {"template_vars": settings.TEMPLATE_VARS} + -- cgit v1.2.3