
<div class="types-information">
    <h2>{{ labels.headline }}</h2>
    <table width="100%">
        <thead>
            <tr>
                <th colspan="3">
                    {{ labels.admin }}
                </th>
                <th colspan="4">
                    {{ labels.frontend }}
                </th>
            </tr>
            <tr>
                {% for content in thead %}
                    <th width="{{ 100 / thead|length }}%">
                        {% include 'page/dashboard/table/thead-cell.twig' %}
                    </th>
                {% endfor %}
            </tr>
        </thead>
        <tbody>
            {{ rows|raw }}
        </tbody>
    </table>
</div>




