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 | a28e3f98ec1870320a699d3b726331e5f2f03acf (patch) | |
tree | 035556b4fb1eaa641593fef8840a274838be4fde /dashboard | |
parent | cde5479d94eb3ca175df8b8e3d1f7dec8b7bbda4 (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 'dashboard')
-rw-r--r-- | dashboard/src/templates/base.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/src/templates/base.html b/dashboard/src/templates/base.html index ca17949..c74db05 100644 --- a/dashboard/src/templates/base.html +++ b/dashboard/src/templates/base.html @@ -1,5 +1,6 @@ {% extends "layout.html" %} {% load bootstrap3 %} +{% load staticfiles %} {% block basecontent %} <div id="wrapper"> |