aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/views/views.py')
-rw-r--r--pyaggr3g470r/views/views.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/pyaggr3g470r/views/views.py b/pyaggr3g470r/views/views.py
index e06e1a9d..06b234cd 100644
--- a/pyaggr3g470r/views/views.py
+++ b/pyaggr3g470r/views/views.py
@@ -138,6 +138,16 @@ def get_timezone():
except:
return conf.TIME_ZONE["en"]
+@app.context_processor
+def inject_feed_form():
+ """
+ Injects the 'AddFeedForm' objects in all templates.
+
+ Context processors run before the template is rendered and have the
+ ability to inject new values into the template context.
+ """
+ return dict(create_feed_form=AddFeedForm())
+
#
# Views.
#
bgstack15