{{ include('_title.html.twig') }}
{% block list_buttons %}{% endblock %}
{{ include('_message.html.twig') }}
<div class="row table-responsive">
<table id="data-table" class="table table-bordered table-striped table-sm display">
<thead>
<tr>
{% block ths %}
<th>名称</th>
{% endblock %}
</tr>
</thead>
<tbody>
{% for entity in entities %}
<tr>
{% block tds %}
<td><a href="{{ path('super_'~name~'_edit', {id:entity.id}) }}">{{ entity.name }}</a></td>
{% endblock %}
</tr>
{% endfor %}
</tbody>
</table>
</div>