diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-10-09 14:46:24 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-10-09 14:46:24 -0700 |
commit | e3dc55b54713e4a9e015cffcbc35ef811ff6606b (patch) | |
tree | 54aed05ee5338da59bde1dd53ce7906a3395d83f /src | |
parent | 42763c659dd029cbe2c88e2292f638fd0735825e (diff) |
Add 'staticfiles' Template Tag to Base Template
Without this tag the dashboard HTML will fail to render because it
doesn't have a reference to the 'static' template tag.
Change-Id: Id56d3b460dc848508c8ae549e7781ea876bdc52b
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/templates/base.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html index ca17949..c74db05 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -1,5 +1,6 @@ {% extends "layout.html" %} {% load bootstrap3 %} +{% load staticfiles %} {% block basecontent %} <div id="wrapper"> |