templates/battles/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Battles{% endblock %}
  3. {% block body %}
  4.     <a href="/battles/new" class="btn btn-light">New Battle</a>
  5.     {% if battles %}
  6.         <table id="battles_list" class="table table-striped">
  7.             <thead>
  8.             <tr>
  9.                 <th>Battle Title</th>
  10.                 <th>Actions</th>
  11.             </tr>
  12.             </thead>
  13.             <tbody>
  14.             {% for battle in battles %}
  15.                 <tr>
  16.                     <td>{{ battle.title }}</td>
  17.                     <td>
  18.                         <a href="/battles/{{ battle.id }}" class="btn btn-dark">Show</a>
  19.                         <a href="/battles/edit/{{ battle.id }}" class="btn btn-light">Edit</a>
  20.                         <a href="/tools/controller?battle={{ battle.id }}" target="_blank" class="btn btn-light">Live Controll</a>
  21.                         <a href="/tools?battle={{ battle.id }}" target="_blank" class="btn btn-light">Tools</a>
  22.                         <a href="#" class="btn btn-danger delete-battles" data-id="{{ battle.id }}">Delete</a>
  23.                     </td>
  24.                 </tr>
  25.             {% endfor %}
  26.             </tbody>
  27.         </table>
  28.     {% else %}
  29.         <p>No battles to display</p>
  30.     {% endif %}
  31. {% endblock %}