forked from CGM_Public/pretix_original
Fixed #147 -- Order filter form does not represent current state
This commit is contained in:
@@ -47,7 +47,7 @@
|
|||||||
<option value="">{% trans "All products" %}</option>
|
<option value="">{% trans "All products" %}</option>
|
||||||
{% for item in items %}
|
{% for item in items %}
|
||||||
<option value="{{ item.id }}"
|
<option value="{{ item.id }}"
|
||||||
{% if request.GET.item == item.id %}selected="selected"{% endif %}>
|
{% if request.GET.item|add:"0" == item.id %}selected="selected"{% endif %}>
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</option>
|
</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
Reference in New Issue
Block a user