mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
test filterOrder in an accordion
This commit is contained in:
parent
17d2b795b4
commit
20e64e8768
@ -1,6 +1,13 @@
|
|||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
|
<div class="accordion my-3" id="filterOrderAccordion">
|
||||||
|
<h2 class="accordion-header" id="filterOrderHeading">
|
||||||
|
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#filterOrderCollapse" aria-expanded="true" aria-controls="filterOrderCollapse">
|
||||||
|
<strong><i class="fa fa-fw fa-filter"></i>Filtrer la liste</strong>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div class="accordion-collapse collapse" id="filterOrderCollapse" aria-labelledby="filterOrderHeading" data-bs-parent="#filterOrderAccordion">
|
||||||
{% set btnSubmit = 0 %}
|
{% set btnSubmit = 0 %}
|
||||||
<div class="chill_filter_order container-xxl p-5 py-2 my-3">
|
<div class="accordion-body chill_filter_order container-xxl p-5 py-2">
|
||||||
<div class="row my-2">
|
<div class="row my-2">
|
||||||
{% if form.vars.has_search_box %}
|
{% if form.vars.has_search_box %}
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
@ -85,8 +92,11 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% for k,v in otherParameters %}
|
{% for k,v in otherParameters %}
|
||||||
<input type="hidden" name="{{ k }}" value="{{ v }}" />
|
<input type="hidden" name="{{ k }}" value="{{ v }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user