From a28e3f98ec1870320a699d3b726331e5f2f03acf 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 --- dashboard/src/templates/base.html | 1 + 1 file changed, 1 insertion(+) (limited to 'dashboard/src/templates/base.html') 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 %}
-- cgit 1.2.3-korg