From: Andrew Donnellan Date: Fri, 13 Sep 2019 11:19:43 +0000 (+0100) Subject: templates: Use 'static' rather than 'statictags' library X-Git-Tag: v2.2.0-rc1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89c924f9bc2f4fef73fd445c45c73d6cecbc798a;p=thirdparty%2Fpatchwork.git 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 --- diff --git a/templates/base.html b/templates/base.html index 501208f0..802ea98b 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,4 @@ -{% load staticfiles %} +{% load static %}