This commit is contained in:
Jonas Heinrich 2025-04-08 10:33:00 +02:00
parent 2308302de0
commit abf6da60a8
4 changed files with 84 additions and 40 deletions

View file

@ -0,0 +1,13 @@
{% load i18n %}
<h3>{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
<ul>
<li>
<form action="" method="get">
<input type="text"
name="{{ choices.0.field_path }}"
value="{% if choices.0.value %}{{ choices.0.value }}{% endif %}">
{% for k, v in choices.0.params.items %}<input type="hidden" name="{{ k }}" value="{{ v }}" />{% endfor %}
</form>
</li>
</ul>