You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
22 lines
450 B
2 years ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Theme override for a views exposed form.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - form: A render element representing the form.
|
||
|
*
|
||
|
* @see template_preprocess_views_exposed_form()
|
||
|
*/
|
||
|
#}
|
||
|
{% if q is not empty %}
|
||
|
{#
|
||
|
This ensures that, if clean URLs are off, the 'q' is added first,
|
||
|
as a hidden form element, so that it shows up first in the POST URL.
|
||
|
#}
|
||
|
{{ q }}
|
||
|
{% endif %}
|
||
|
<div class="form--inline clearfix">
|
||
|
{{ form }}
|
||
|
</div>
|