Commit 356e6060fad14a55f56e4369694f1bb973a5742b

Authored by Luan
1 parent 3770b4df

Minor fix on search attachments template

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/templates/search/search.html
... ... @@ -90,7 +90,7 @@
90 90 <ul class="unstyled-list">
91 91 {% for value, option in mimetype_choices %}
92 92 {% with value|add:" "|add:mimetype_chosen as mimelistadd %}
93   - {% if value in mime_chosen %}
  93 + {% if value in mimetype_chosen %}
94 94 <li class="selected" title="{% trans "Remove filter" %}">
95 95 <span class="glyphicon glyphicon-remove"></span>
96 96 <a href="{% pop_from_get mimetype=value %}">{{ option }}</a>
... ...