views-ui-rearrange-filter-form.html.twig
Same filename in this branch
Same filename in other branches
- 8.9.x core/themes/stable/templates/admin/views-ui-rearrange-filter-form.html.twig
- 8.9.x core/modules/views_ui/templates/views-ui-rearrange-filter-form.html.twig
- 10 core/themes/stable9/templates/admin/views-ui-rearrange-filter-form.html.twig
- 10 core/modules/views_ui/templates/views-ui-rearrange-filter-form.html.twig
- 11.x core/themes/stable9/templates/admin/views-ui-rearrange-filter-form.html.twig
- 11.x core/modules/views_ui/templates/views-ui-rearrange-filter-form.html.twig
Theme override for Views UI rearrange filter form.
Available variables:
- form: A render element representing the form.
- grouping: A flag whether or not there is more than one group.
- ungroupable_table: The ungroupable filter table.
- table: The groupable filter table.
See also
template_preprocess_views_ui_rearrange_filter_form()
File
-
core/
themes/ stable/ templates/ admin/ views-ui-rearrange-filter-form.html.twig
View source
- {#
- /**
- * @file
- * Theme override for Views UI rearrange filter form.
- *
- * Available variables:
- * - form: A render element representing the form.
- * - grouping: A flag whether or not there is more than one group.
- * - ungroupable_table: The ungroupable filter table.
- * - table: The groupable filter table.
- *
- * @see template_preprocess_views_ui_rearrange_filter_form()
- */
- #}
- {{ form.override }}
- <div class="scroll" data-drupal-views-scroll>
- {% if grouping %}
- {{ form.filter_groups.operator }}
- {% else %}
- {{ form.filter_groups.groups.0 }}
- {% endif %}
- {{ ungroupable_table }}
- {{ table }}
- </div>
- {{ form|without('override', 'filter_groups', 'remove_groups', 'filters') }}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.