Commit 05eafcb1191bdc5f36c2870390c1ba6680a086b8
1 parent
698987cd
Exists in
master
and in
39 other branches
Minor fixes on search filters, missing from last commit
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/search/templates/search/includes/search_filters.html
... | ... | @@ -98,9 +98,9 @@ |
98 | 98 | <span class="glyphicon glyphicon-chevron-right"></span> |
99 | 99 | <a href="{% append_to_get order=option p=1 %}"> |
100 | 100 | {% ifequal request.GET.order option %} |
101 | - {% blocktrans with name=dict_order.name %}<strong>{{ name }}</strong>{% endblocktrans %} | |
101 | + <strong>{{ dict_order.name }}</strong> | |
102 | 102 | {% else %} |
103 | - {% blocktrans with name=dict_order.name %}{{ name }}{% endblocktrans %} | |
103 | + {{ dict_order.name }} | |
104 | 104 | {% endifequal %} |
105 | 105 | </a> |
106 | 106 | </li> | ... | ... |