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

Open in your IDE?
  1. {% extends 'super/list/name.html.twig' %}
  2. {% block content %}
  3. {{ include('_title.html.twig') }}
  4. {{ form_start(form) }}
  5. {{ form_widget(form) }}
  6. <a class="btn btn-secondary" href="{{ path('super_batch_list') }}" role="button">返回</a>
  7. {{ form_end(form) }}
  8. <div class="row table-responsive">    
  9.     <table id="data-table" class="table table-bordered table-striped table-sm display">
  10.         <thead>
  11.             <tr>
  12.                 <th>学院</th>
  13.                 <th>附件</th>
  14.             </tr>
  15.         </thead>
  16.         <tbody>
  17.             {% for entity in entities %}
  18.             <tr>
  19.                 <td>{{ entity.college.name }}</td>
  20.                 <td><a href="{{ path('super_batch_college_attachment_download', {id:entity.id}) }}">{{ entity.name }}</a></td>
  21.             </tr>
  22.             {% endfor %}
  23.         </tbody>
  24.         <tfoot></tfoot>
  25.     </table>
  26. </div>
  27. {% endblock %}
  28. {% block extra_javascripts %}
  29. {{ encore_entry_script_tags('super_batch_college_attachment_list') }}
  30. {% endblock %}