From 89c924f9bc2f4fef73fd445c45c73d6cecbc798a Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Fri, 13 Sep 2019 12:19:43 +0100 Subject: templates: Use 'static' rather than 'statictags' library statictags is being renamed to static, use of {% load statictags %} is deprecated and will break in Django 3. Signed-off-by: Andrew Donnellan Signed-off-by: Daniel Axtens --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index 501208f..802ea98 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,4 @@ -{% load staticfiles %} +{% load static %} -- cgit v1.2.3