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