Same filename in this branch
  1. 10 core/modules/views_ui/templates/views-ui-style-plugin-table.html.twig
  2. 10 core/themes/stable9/templates/admin/views-ui-style-plugin-table.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/views_ui/templates/views-ui-style-plugin-table.html.twig
  2. 9 core/modules/views_ui/templates/views-ui-style-plugin-table.html.twig

Default template for the settings of a table style views display.

Available variables:

  • table: A table of options for each field in this display.
  • form: Any remaining form fields not included in the table.
    • description_markup: An overview for the settings of this display.

See also

template_preprocess_views_ui_style_plugin_table()

File

core/modules/views_ui/templates/views-ui-style-plugin-table.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default template for the settings of a table style views display.
  5. *
  6. * Available variables:
  7. * - table: A table of options for each field in this display.
  8. * - form: Any remaining form fields not included in the table.
  9. * - description_markup: An overview for the settings of this display.
  10. *
  11. * @see template_preprocess_views_ui_style_plugin_table()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {{ form.description_markup }}
  17. {{ table }}
  18. {{ form }}

Related topics