{##} {% extends "components/paginatedTable.twig.html" %} {% block table %}
{% if not hidePagination %} {{ block("header") }} {% endif %} {% if dataSet.getResultCount == 0 %}
{{ block('blankslate') }}
{% else %}
{{ gridHeader|raw }}
{% for rowIndex, rowData in rows %} {{ rowData.row.getPrepended|raw }}
{% for columnIndex, column in columns %} {% set cell = rowData.cells[columnIndex] %}
{% if column.getID == "actions" %} {{ block('actions') }} {% else %} {{ column.getOutput(rowData.data)|raw }} {% endif %}
{% endfor %}
{{ rowData.row.getAppended|raw }} {% endfor %}
{{ gridFooter|raw }}
{% endif %} {{ block("footer") }}
{% if path and identifier %} {% endif %} {% endblock table %}