templates/super/project/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. {{ include('_message.html.twig') }}
  5. {{ form_start(form) }}
  6. {{ form_row(form.college) }}
  7. {{ form_row(form.category) }}
  8. {{ form_row(form.status) }}
  9. {{ form_widget(form.export) }}
  10. {{ form_widget(form.search) }}
  11. <a class="btn btn-secondary" href="{{ path('super_batch_list') }}" role="button">返回</a>
  12. {{ form_end(form) }}
  13. <div class="row table-responsive">    
  14.     <table id="data-table" class="table table-bordered table-striped table-sm display">
  15.         <thead>
  16.             <tr>
  17.                 {% block ths %}{% endblock %}
  18.             </tr>
  19.         </thead>
  20.         <tbody>
  21.             {% for entity in entities %}
  22.             <tr>
  23.                 {% block tds %}{% endblock %}
  24.             </tr>
  25.             {% endfor %}
  26.         </tbody>
  27.         <tfoot></tfoot>
  28.     </table>
  29. </div>
  30. {% endblock %}
  31. {% block extra_javascripts %}
  32. {{ encore_entry_script_tags('common_list') }}
  33. {% endblock %}