Skip to content

Commit

Permalink
Fix darklow#710 - Remove admin_static template tag in favor of `sta…
Browse files Browse the repository at this point in the history
…tic`
  • Loading branch information
amureki committed Nov 2, 2018
1 parent 9941211 commit e30ce4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/demo/templates/admin/base_site.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends 'admin/base_site.html' %}
{% load suit_tags admin_static %}
{% load suit_tags static %}

{# Following is an example how to extend admin by custom CSS or JS files #}
{# Add extra CSS for admin #}
Expand Down
2 changes: 1 addition & 1 deletion suit/templates/admin/base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends 'admin/base.html' %}
{% load i18n admin_static suit_tags %}
{% load i18n static suit_tags %}

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

Expand Down
2 changes: 1 addition & 1 deletion suit/templates/admin/change_list_results.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n admin_static suit_list %}
{% load i18n static suit_list %}
{% if result_hidden_fields %}
<div class="hiddenfields">{# DIV for HTML validation #}
{% for item in result_hidden_fields %}{{ item }}{% endfor %}
Expand Down

0 comments on commit e30ce4b

Please sign in to comment.