{# /** * @file * Default theme implementation for views listing table. * * Available variables: * - headers: Contains table headers. * - rows: Contains multiple rows. Each row contains: * - tour_name: The human-readable name of the tour. * - machine_name: Machine name of the tour. * - status: The status of the tour. * - tips: The number of tips of the tour. * - operations: List of available operations. * * @ingroup themeable */ #} {% if rows %} {% for header in headers %} {{ header }} {% endfor %} {% for row in rows %} {% for data in row.data %} {{ data }} {% endfor %} {% endfor %} {% else %} {{ empty }} {% endif %}