templates/_list.html.twig line 1

Open in your IDE?
  1. {{ include('_title.html.twig') }}
  2. {% block list_buttons %}{% endblock %}
  3. {{ include('_message.html.twig') }}
  4. <div class="row table-responsive">
  5.     <table id="data-table" class="table table-bordered table-striped table-sm display">
  6.         <thead>
  7.             <tr>
  8.                 {% block ths %}
  9.                 <th>名称</th>
  10.                 {% endblock %}
  11.             </tr>
  12.         </thead>
  13.         <tbody>
  14.             {% for entity in entities %}
  15.             <tr>
  16.                 {% block tds %}
  17.                 <td><a href="{{ path('super_'~name~'_edit', {id:entity.id}) }}">{{ entity.name }}</a></td>
  18.                 {% endblock %}
  19.             </tr>
  20.             {% endfor %}
  21.         </tbody>
  22.     </table>
  23. </div>