views-exposed-form.html.twig

Same filename in this branch
  1. 9 core/themes/stable9/templates/views/views-exposed-form.html.twig
  2. 9 core/themes/seven/templates/classy/views/views-exposed-form.html.twig
  3. 9 core/themes/claro/templates/views-exposed-form.html.twig
  4. 9 core/themes/bartik/templates/classy/views/views-exposed-form.html.twig
  5. 9 core/themes/stable/templates/views/views-exposed-form.html.twig
  6. 9 core/themes/starterkit_theme/templates/views/views-exposed-form.html.twig
  7. 9 core/themes/classy/templates/views/views-exposed-form.html.twig
  8. 9 core/modules/views/templates/views-exposed-form.html.twig
Same filename and directory in other branches
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/views/views-exposed-form.html.twig
  2. 8.9.x core/themes/seven/templates/classy/views/views-exposed-form.html.twig
  3. 8.9.x core/themes/claro/templates/views-exposed-form.html.twig
  4. 8.9.x core/themes/bartik/templates/classy/views/views-exposed-form.html.twig
  5. 8.9.x core/themes/stable/templates/views/views-exposed-form.html.twig
  6. 8.9.x core/themes/classy/templates/views/views-exposed-form.html.twig
  7. 8.9.x core/modules/views/templates/views-exposed-form.html.twig
  8. 10 core/profiles/demo_umami/themes/umami/templates/classy/views/views-exposed-form.html.twig
  9. 10 core/themes/stable9/templates/views/views-exposed-form.html.twig
  10. 10 core/themes/claro/templates/views-exposed-form.html.twig
  11. 10 core/themes/starterkit_theme/templates/views/views-exposed-form.html.twig
  12. 10 core/modules/views/templates/views-exposed-form.html.twig
  13. 11.x core/profiles/demo_umami/themes/umami/templates/classy/views/views-exposed-form.html.twig
  14. 11.x core/themes/stable9/templates/views/views-exposed-form.html.twig
  15. 11.x core/themes/claro/templates/views-exposed-form.html.twig
  16. 11.x core/themes/starterkit_theme/templates/views/views-exposed-form.html.twig
  17. 11.x core/modules/views/templates/views-exposed-form.html.twig

Theme override for a views exposed form.

Available variables:

  • form: A render element representing the form.

See also

template_preprocess_views_exposed_form()

File

core/profiles/demo_umami/themes/umami/templates/classy/views/views-exposed-form.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for 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. #}
  12. {% if q is not empty %}
  13. {#
  14. This ensures that, if clean URLs are off, the 'q' is added first,
  15. as a hidden form element, so that it shows up first in the POST URL.
  16. #}
  17. {{ q }}
  18. {% endif %}
  19. <div class="form--inline clearfix">
  20. {{ form }}
  21. </div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.