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