From 8273647b64efcc1f720a4d70090d6b38ec65e1f3 Mon Sep 17 00:00:00 2001 From: Tim Heap Date: Wed, 4 Nov 2015 11:00:23 +1100 Subject: [PATCH] Remove unused wagtailimages_tags from group edit page The `wagtailimages_tags` library was needlessly loaded on the group edit page. This causes an error on installations that do not use `wagtailimages`, or test suites for Wagtail plugins that do not use images directly. --- wagtail/wagtailusers/templates/wagtailusers/groups/edit.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtailusers/templates/wagtailusers/groups/edit.html b/wagtail/wagtailusers/templates/wagtailusers/groups/edit.html index c9cfee761c..b1d67171fd 100644 --- a/wagtail/wagtailusers/templates/wagtailusers/groups/edit.html +++ b/wagtail/wagtailusers/templates/wagtailusers/groups/edit.html @@ -1,5 +1,5 @@ {% extends "wagtailadmin/base.html" %} -{% load wagtailusers_tags wagtailimages_tags static compress i18n %} +{% load wagtailusers_tags static compress i18n %} {% block titletag %}{% trans "Editing" %} {{ group.name }}{% endblock %}