Commit 675bfbcc7bb480d23593521f4f74bb18a886c150

Authored by Luan
1 parent cc99f79f

Adding fix to keep date when removing type filter

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/templates/search/search.html
... ... @@ -36,7 +36,7 @@
36 36 {% if filters %}
37 37 <ul class="unstyled-list">
38 38 <li class="selected" title="{% trans "Remove filter" %}">
39   - <a href="{% url 'haystack_search' %}?q={{ request.GET.q }}{% if request.GET.order %}&order={{ request.GET.order }}{% endif %}">
  39 + <a href="{% url 'haystack_search' %}?q={{ request.GET.q }}{% if request.GET.order %}&order={{ request.GET.order }}{% endif %}{% if request.GET.since %}&since={{ request.GET.since }}{% endif %}{% if request.GET.until %}&until={{ request.GET.until }}{% endif %}">
40 40 <span class="glyphicon glyphicon-remove"></span> {{ filters.name }}
41 41 </a>
42 42 </li>
... ...