mewgenics_heredity/frontend/templates/generation_form.html.j2
2026-02-24 22:14:36 +01:00

22 lines
444 B
Django/Jinja

<select
name="generation"
hx-post="/hx/generation/next"
hx-trigger="change[target.selectedOptions[0].value=='new']"
hx-on::after-request="document.location.reload()"
>
<option value="new">
New generation
</option>
{% for generation in generations %}
<option
{% if selected_generation == generation.id %}
selected
{% endif %}
value="{{ generation.id }}"
>
{{ generation.day }}
</option>
{% endfor %}
</select>