{% extends 'Search/base.html.twig' %} {% set showExtended = false %} {% set searched = false %} {% for child in searchForm.children %} {% if child.vars.name != "_token" and child.vars.name != "type" and (child.vars.value != null and child.vars.value != 0) %} {% set searched = true %} {% if child.vars.name != "search" %} {% set showExtended = true %} {% endif %} {% endif %} {% endfor %} {% block body %} {{ form_start(searchForm, {'attr': {'id': 'filter', 'class': 'min-w-sm-100 pt-5','novalidate':'novalidate'}}) }}
{% include 'Extentions/Icons/search.html.twig' with {'positionVertical' : 'top-35'} %} {{ searchForm.search|form_row(placeholder()) }}
{% include 'Includes/Form/submit.html.twig' with { 'icon' : 'none', 'text' : 'app.global.buttons.search'|trans, 'id' : 'search_submit' } %} {% if true == searched %} {% include 'Extentions/Links/search_cancel.html.twig' with { route : path(app.request.attributes.get('_route'),{'id' : app.request.get('id'), 'instance' : app.request.get('instance')} )} %} {% endif %} {% if searchForm.children|length > 2 %} {{ 'app.global.buttons.search_advanced'|trans }} {% endif %}
{% if searchForm.type is defined %}
{{ searchForm.type|form_radio_row('_styled') }}
{% endif %}
{% if searchForm.children|length > 2 %}
{% if searchForm.period is defined %} {% endif %} {% if searchForm.orderSource is defined %}
{{ searchForm.orderSource|form_radio_row('_styled') }}
{% endif %} {% if searchForm.status is defined %}
{{ searchForm.status|form_row }}
{% endif %} {% if searchForm.enabled is defined %}
{{ searchForm.enabled|form_radio_row('_styled') }}
{% endif %} {% if searchForm.new is defined %}
{{ searchForm.new|form_radio_row('_styled') }}
{% endif %} {% if searchForm.franchise is defined %}
{{ searchForm.franchise|form_row }}
{% endif %} {% if searchForm.shop is defined %}
{{ searchForm.shop|form_row }}
{% endif %} {% if searchForm.source is defined %}
{{ searchForm.source|form_row }}
{% endif %} {% if searchForm.licence is defined %}
{{ searchForm.licence|form_radio_row('_styled') }}
{% endif %} {% if searchForm.categories is defined %}
{{ searchForm.categories|form_row('_styled') }}
{% endif %} {% if searchForm.outOfStock is defined %}
{{ searchForm.outOfStock|form_radio_row('_styled') }}
{% endif %}
{% endif %} {{ form_end(searchForm) }} {% endblock %}