Skip to content

Commit

Permalink
Use svg icons in admin
Browse files Browse the repository at this point in the history
The SVG icons are only available from django 1.9, so the alt text works
reasonably as a fallback for django 1.8. Later versions only have the
SVG icons.
  • Loading branch information
friedelwolff committed May 25, 2017
1 parent ac12c80 commit 3d61bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/templates/admin/guardian/model/obj_perms_manage.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ <h2>{% trans "Users" %}</h2>
{% for perm in model_perms %}
<td>
{% if perm.codename in user_perms %}
<img src="{% static "admin/img/icon-yes.gif" %}"/>
<img src="{% static "admin/img/icon-yes.svg" %}" style="color: green;" alt=""/>
{% else %}
<img src="{% static "admin/img/icon-no.gif" %}"/>
<img src="{% static "admin/img/icon-no.svg" %}" style="color: red;" alt=""/>
{% endif %}
</td>
{% endfor %}
Expand Down

0 comments on commit 3d61bb3

Please sign in to comment.