templates/super/reviewer/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_reviewer_new', {id:reviewBatch.id}) }}" class="btn btn-primary" role="button">新增</a>
  7.     <a href="{{ path('super_review_batch_list') }}" class="btn btn-secondary" role="button">返回</a>
  8. </p>
  9. {% endblock %}
  10. {% block ths %}
  11. <th>用户名</th>
  12. <th>姓名</th>
  13. <td>修改密码</td>
  14. <th>删除</th>
  15. {% endblock %}
  16. {% block tds %}
  17. <td><a href="{{ path('super_reviewer_edit', {id:entity.id}) }}">{{ entity.username }}</a></td>
  18. <td>{{ entity.name }}</td>
  19. <td><a href="{{ path('super_reviewer_password', {id:entity.id}) }}">修改密码</a></td>
  20. <td><a href="{{ path('super_'~name~'_delete', {id:entity.id}) }}" class="confirm">删除</a></td>
  21. {% endblock %}
  22. {% endembed %}
  23. {% endblock %}