participations.html.twig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends 'bulma.html.twig' %}
  2. {% block title %}Mes parties{% endblock %}
  3. {% block content %}
  4. <nav class="breadcrumb has-arrow-separator" aria-label="breadcrumbs">
  5. <ul>
  6. <li><a href="{{ path('app_main') }}">Accueil</a></li>
  7. <li class="is-active"><a href="{{ path('app_profile_participations') }}">Mes parties</a></li>
  8. </ul>
  9. </nav>
  10. <div class="tabs is-boxed">
  11. <ul>
  12. <li class="is-active"><a>En tant que joueur(euse)</a></li>
  13. {% if app.user.linkToGamemaster %}
  14. <li><a href="{{ path('app_profile_participations_gming') }}">En tant que meneur(euse) de jeu</a></li>
  15. {% endif %}
  16. <li><a>Mes demandes</a></li>
  17. </ul>
  18. </div>
  19. <div class="block">
  20. <table id="datatable" {{ stimulus_controller('datatables') }} class="table is-striped is-hoverable is-fullwidth">
  21. <thead>
  22. <tr>
  23. <th>Événement</th>
  24. <th>Participant</th>
  25. <th>Partie</th>
  26. <th>Date et heure</th>
  27. <th>Action</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. {% for participation in participations %}
  32. <tr>
  33. <th>{{ participation.party.event.name }}</th>
  34. <td>{{ participation.participantName }}</td>
  35. <td>{{ participation.party.game.name }}</td>
  36. <td>{{ participation.party.startOn|date('d/m/y H:i', app_timezone) }}</td>
  37. <td>
  38. <a href="{{ path('app_participation_cancel', {id: participation.id}) }}" data-turbo="false" class="button is-danger">Annuler</a>
  39. </td>
  40. </tr>
  41. {% endfor %}
  42. </tbody>
  43. </table>
  44. </div>
  45. {% endblock %}