mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
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>
|
||||
{% for item in items %}
|
||||
<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 }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user