Skip to content

Commit e30ce4b

Browse files
committed
Fix darklow#710 - Remove admin_static template tag in favor of static
1 parent 9941211 commit e30ce4b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

demo/demo/templates/admin/base_site.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'admin/base_site.html' %}
2-
{% load suit_tags admin_static %}
2+
{% load suit_tags static %}
33

44
{# Following is an example how to extend admin by custom CSS or JS files #}
55
{# Add extra CSS for admin #}

suit/templates/admin/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends 'admin/base.html' %}
2-
{% load i18n admin_static suit_tags %}
2+
{% load i18n static suit_tags %}
33

44
{% block stylesheet %}{% static "suit/css/suit.css" %}{% endblock %}
55

suit/templates/admin/change_list_results.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n admin_static suit_list %}
1+
{% load i18n static suit_list %}
22
{% if result_hidden_fields %}
33
<div class="hiddenfields">{# DIV for HTML validation #}
44
{% for item in result_hidden_fields %}{{ item }}{% endfor %}

0 commit comments

Comments
 (0)