feat: filter assignments and applications by teamer name

closes #869b9vgq7
This commit is contained in:
Björn Fromme
2026-03-15 12:42:28 +01:00
parent e45f6458d4
commit ed41d40059
10 changed files with 105 additions and 6 deletions
@@ -5,9 +5,14 @@
{% block content %}
{{ form_start(filterForm, { 'attr': { 'hx-post': app.request.uri, 'hx-target': '#htmx-modal', 'hx-swap': 'outerHTML' } }) }}
<div class="flex flex-col space-y-2 pb-4">
{% if filterForm.id is defined %}
{{ form_row(filterForm.id) }}
{% endif %}
<div class="grid grid-cols-2 gap-x-4 gap-y-2">
{% if filterForm.id is defined %}
{{ form_row(filterForm.id) }}
{% endif %}
{% if filterForm.teamerName is defined %}
{{ form_row(filterForm.teamerName) }}
{% endif %}
</div>
{% if filterForm.status is defined %}
{{ form_row(filterForm.status) }}
{% endif %}
@@ -5,9 +5,14 @@
{% block content %}
{{ form_start(filterForm, { 'attr': { 'hx-post': app.request.uri, 'hx-target': '#htmx-modal', 'hx-swap': 'outerHTML' } }) }}
<div class="flex flex-col space-y-2 pb-4">
{% if filterForm.id is defined %}
{{ form_row(filterForm.id) }}
{% endif %}
<div class="grid grid-cols-2 gap-x-4 gap-y-2">
{% if filterForm.id is defined %}
{{ form_row(filterForm.id) }}
{% endif %}
{% if filterForm.teamerName is defined %}
{{ form_row(filterForm.teamerName) }}
{% endif %}
</div>
{% if filterForm.status is defined %}
{{ form_row(filterForm.status) }}
{% endif %}