We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8299c1a commit fd859dbCopy full SHA for fd859db
src/unfold/templates/admin/search_form.html
@@ -11,8 +11,10 @@
11
</button>
12
</div>
13
14
- {% for pair in cl.params.items %}
15
- {% if pair.0 != search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}">{% endif %}
+ {% for pair in cl.filter_params.items %}
+ {% for val in pair.1 %}
16
+ {% if pair.0 != search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ val }}">{% endif %}
17
+ {% endfor %}
18
{% endfor %}
19
</form>
20
0 commit comments