views-ui-view-info.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/themes/stable9/templates/admin/views-ui-view-info.html.twig
- 9 core/themes/stable/templates/admin/views-ui-view-info.html.twig
- 9 core/modules/views_ui/templates/views-ui-view-info.html.twig
- 8.9.x core/themes/stable/templates/admin/views-ui-view-info.html.twig
- 8.9.x core/modules/views_ui/templates/views-ui-view-info.html.twig
- 10 core/themes/stable9/templates/admin/views-ui-view-info.html.twig
- 10 core/modules/views_ui/templates/views-ui-view-info.html.twig
Default theme implementation for basic administrative info about a View.
Available variables:
- displays: List of displays.
File
-
core/
modules/ views_ui/ templates/ views-ui-view-info.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation for basic administrative info about a View.
- *
- * Available variables:
- * - displays: List of displays.
- *
- * @ingroup themeable
- */
- #}
- <h3 class="views-ui-view-title" data-drupal-selector="views-table-filter-text-source">{{ view.label }}</h3>
- <div class="views-ui-view-displays">
- {% if displays %}
- {% trans %}
- Display
- {% plural displays %}
- Displays
- {% endtrans %}:
- <em>{{ displays|safe_join(', ') }}</em>
- {% else %}
- {{ 'None'|t }}
- {% endif %}
- </div>
- <div class="views-ui-view-machine-name">
- {{ 'Machine name:'|t }}
- <span data-drupal-selector="views-table-filter-text-source">{{ view.id }}</span>
- </div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.