{##} {% extends "components/dataTable.twig.html" %} {% block title %} {% endblock title %} {% block table %}
{% block header %} {% if table.getTitle %}

{{ table.getTitle|raw }}

{% endif %} {% if table.getHeader %}
{% for action in table.getHeader %} {{ action.getOutput|raw }} {% endfor %}
{% endif %} {% endblock header %}
{{ title }} {% if rows is empty %}
{% block blankslate %} {{ include('components/blankSlate.twig.html') }} {% endblock blankslate %}
{% else %} {% for rowIndex, rowData in rows %} {% for heading, headingColumns in groups %} {% if heading %}

{{ __(heading) }}

{% endif %}
{% for columnIndex, column in headingColumns %}
{{ column.getLabel | raw }} {{ column.getOutput(rowData) | raw }}
{% endfor %}
{% endfor %} {% endfor %} {% endif %} {% endblock table %}