You are here

views-ui-display-tab-setting.html.twig in Drupal 10

Theme override for Views UI display tab settings.

Template for each row inside the "boxes" on the display query edit screen.

Available variables:

  • attributes: HTML attributes such as class for the container.
  • description: The description or label for this setting.
  • settings_links: A list of links for this setting.
  • defaulted: A boolean indicating the setting is in its default state.
  • overridden: A boolean indicating the setting has been overridden from the default.

File

core/themes/stable9/templates/admin/views-ui-display-tab-setting.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for Views UI display tab settings.
  5. *
  6. * Template for each row inside the "boxes" on the display query edit screen.
  7. *
  8. * Available variables:
  9. * - attributes: HTML attributes such as class for the container.
  10. * - description: The description or label for this setting.
  11. * - settings_links: A list of links for this setting.
  12. * - defaulted: A boolean indicating the setting is in its default state.
  13. * - overridden: A boolean indicating the setting has been overridden from the
  14. * default.
  15. *
  16. * @see template_preprocess_views_ui_display_tab_setting()
  17. */
  18. #}
  19. {%
  20. set classes = [
  21. 'views-display-setting',
  22. 'clearfix',
  23. 'views-ui-display-tab-setting',
  24. defaulted ? 'defaulted',
  25. overridden ? 'overridden',
  26. ]
  27. %}
  28. <div{{ attributes.addClass(classes) }}>
  29. {% if description -%}
  30. <span class="label">{{ description }}</span>
  31. {%- endif %}
  32. {% if settings_links %}
  33. {{ settings_links|safe_join('<span class="label">&nbsp;|&nbsp;</span>') }}
  34. {% endif %}
  35. </div>