21 lines
547 B
Twig
21 lines
547 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for basic administrative info about a View.
|
|
*
|
|
* Available variables:
|
|
* - title: View title.
|
|
* - displays: List of displays.
|
|
*
|
|
* @see template_preprocess_views_ui_view_info()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<h3 class="views-ui-view-title views-table-filter-text-source">{{ title }}</h3>
|
|
<div class="views-ui-view-displays">{{ displays }}</div>
|
|
<div class="views-ui-view-machine-name">
|
|
{% trans 'Machine name:' %}
|
|
<span class="views-table-filter-text-source">{{ view.id }}</span>
|
|
</div>
|