{% extends 'super/list/name.html.twig' %}
{% block content %}
{{ include('_title.html.twig') }}
{{ form_start(form) }}
{{ form_widget(form) }}
<a class="btn btn-secondary" href="{{ path('super_batch_list') }}" role="button">返回</a>
{{ form_end(form) }}
<div class="row table-responsive">
<table id="data-table" class="table table-bordered table-striped table-sm display">
<thead>
<tr>
<th>学院</th>
<th>附件</th>
</tr>
</thead>
<tbody>
{% for entity in entities %}
<tr>
<td>{{ entity.college.name }}</td>
<td><a href="{{ path('super_batch_college_attachment_download', {id:entity.id}) }}">{{ entity.name }}</a></td>
</tr>
{% endfor %}
</tbody>
<tfoot></tfoot>
</table>
</div>
{% endblock %}
{% block extra_javascripts %}
{{ encore_entry_script_tags('super_batch_college_attachment_list') }}
{% endblock %}