Same filename in this branch
  1. 10 core/modules/views/templates/views-exposed-form.html.twig
  2. 10 core/themes/claro/templates/views-exposed-form.html.twig
  3. 10 core/themes/stable9/templates/views/views-exposed-form.html.twig
  4. 10 core/themes/starterkit_theme/templates/views/views-exposed-form.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/views/views-exposed-form.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/views/templates/views-exposed-form.html.twig
  2. 9 core/modules/views/templates/views-exposed-form.html.twig

Default theme implementation of a views exposed form.

Available variables:

  • form: A render element representing the form.

See also

template_preprocess_views_exposed_form()

File

core/modules/views/templates/views-exposed-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a views exposed form.
  5. *
  6. * Available variables:
  7. * - form: A render element representing the form.
  8. *
  9. * @see template_preprocess_views_exposed_form()
  10. *
  11. * @ingroup themeable
  12. */
  13. #}
  14. {% if q is not empty %}
  15. {#
  16. This ensures that, if clean URLs are off, the 'q' is added first,
  17. as a hidden form element, so that it shows up first in the POST URL.
  18. #}
  19. {{ q }}
  20. {% endif %}
  21. {{ form }}

Related topics