feat: filter assignments and applications by teamer name
closes #869b9vgq7
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user