From e3dc55b54713e4a9e015cffcbc35ef811ff6606b Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Mon, 9 Oct 2017 14:46:24 -0700 Subject: 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 --- src/templates/base.html | 1 + 1 file changed, 1 insertion(+) (limited to 'src/templates/base.html') 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 %}
-- cgit 1.2.3-korg