{% extends 'super/list/name.html.twig' %}
{% block content %}
{% embed '_list.html.twig' %}
{% block list_buttons %}
<p>
<a href="{{ path('super_notice_attachment_new', {id:notice.id}) }}" class="btn btn-primary" role="button">新增</a>
<a href="{{ path('super_notice_list', {id:notice.batch.id}) }}" class="btn btn-secondary" role="button">返回</a>
</p>
{% endblock %}
{% block ths %}
<th>附件</th>
<th>删除</th>
{% endblock %}
{% block tds %}
<td><a href="{{ path('notice_attachment_download', {id:entity.id}) }}">{{ entity.name }}</a></td>
<td><a href="{{ path('super_'~name~'_delete', {id:entity.id}) }}" class="confirm">删除</a></td>
{% endblock %}
{% endembed %}
{% endblock %}