templates/super/notice/list.html.twig line 1

Open in your IDE?
  1. {% extends 'super/list/name.html.twig' %}
  2. {% block content %}
  3. {% embed '_list.html.twig' %}
  4. {% block list_buttons %}
  5. <p>
  6.     <a href="{{ path('super_notice_new', {id:batch.id}) }}" class="btn btn-primary" role="button">新增</a>
  7.     <a href="{{ path('super_batch_list') }}" class="btn btn-secondary" role="button">返回</a>
  8. </p>
  9. {% endblock %}
  10. {% block ths %}
  11.     {{ parent() }}
  12.     <th>附件</th>
  13.     <th>删除</th>
  14. {% endblock %}
  15. {% block tds %}
  16.     {{ parent() }}
  17.     <td><a href="{{ path('super_notice_attachment_list',{id:entity.id}) }}">附件</a></td>
  18.     <td><a href="{{ path('super_'~name~'_delete', {id:entity.id}) }}" class="confirm">删除</a></td>
  19. {% endblock %}
  20. {% endembed %}
  21. {% endblock %}