liste.html.twig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {% extends "videotheque/base.html.twig" %}
  2. {% block title %}
  3. {% if titre is defined %}{{ parent() }} - {{ titre }}{% else %}{{ parent() }}{% endif %}
  4. {% endblock %}
  5. {% block titre %}
  6. {% if titre is defined %}{{ titre }}{% else %}{{ parent() }}{% endif %}
  7. {% endblock %}
  8. {% block body %}
  9. <div class="row">
  10. {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  11. <p><a class="btn btn-primary" role="button" href="{{ path('videotheque_ajouter') }}"><i class="fa fa-plus-square fa-lg"></i> Ajouter un film</a></p>
  12. {% endif %}
  13. <p>Filtrer par film au dessus de
  14. <input class="rating"
  15. data-disabled="false"
  16. data-show-clear="true"
  17. data-show-caption="false"
  18. data-theme="krajee-fa"
  19. data-toggle="star-filter"
  20. data-path="#tableFilms"
  21. min=0
  22. max=5
  23. data-step=1
  24. data-size="sm"
  25. value="0">
  26. </p>
  27. </div>
  28. <div class="row">
  29. <table class="table table-bordered table-hover table-sm align-middle">
  30. <thead class="">
  31. <tr>
  32. {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  33. <th style="width:1em;"></th>
  34. <th style="width:1em;"></th>
  35. <th>Ajouté par</th>
  36. {% endif %}
  37. <th>Titre</th>
  38. <th>Genre</th>
  39. <th>Réalisateur</th>
  40. <th style="width:5em;">Note</th>
  41. <th style="width:5em;">Année</th>
  42. </tr>
  43. </thead>
  44. <tbody id="tableFilms">
  45. {% for film in listeFilms %}
  46. <tr data-auteur="{{ film.authered.nomComplet }}">
  47. {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  48. <td>
  49. {% if app.user.wantToSee(film) %}
  50. {% set follow_icone = "fa fa-bookmark fa-lg" %}
  51. {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
  52. {% else %}
  53. {% set follow_icone = "fa fa-bookmark-o text-secondary fa-lg" %}
  54. {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
  55. {% endif %}
  56. <a href="#" data-fonction="switch"
  57. data-icone-actif="fa fa-bookmark fa-lg"
  58. data-icone-inactif="fa fa-bookmark-o text-secondary fa-lg"
  59. data-path="{{ path('maliste_modifier_a_voir') }}"
  60. data-bs-toggle="tooltip"
  61. title="{{ follow_texte }}"
  62. data-content="{{ film.id }}">
  63. <i class="{{ follow_icone }}"></i>
  64. </a>
  65. </td>
  66. <td>
  67. {% if app.user.haveSeen(film) %}
  68. {% set vu_icone = '<i class="fa fa-eye fa-lg text-success"></i>' %}
  69. {% else %}
  70. {% set vu_icone = '<i class="fa fa-eye-slash fa-lg text-secondary"></i>' %}
  71. {% endif %}
  72. <a href="#" data-fonction="switch"
  73. data-path="{{ path('maliste_modifier_vus') }}"
  74. data-content="{{ film.id }}"
  75. data-icone-actif = "fa fa-eye fa-lg text-success"
  76. data-icone-inactif = "fa fa-eye-slash fa-lg text-secondary">
  77. {{ vu_icone | raw }}
  78. </a>
  79. </td>
  80. <td>
  81. {% if film.authered is defined %}
  82. {% if film.authered.activeNow %}
  83. <i class="fa fa-user text-success" data-bs-toggle="tooltip" title="En ligne"></i>
  84. {% else %}
  85. <i class="fa fa-user-o text-secondary" data-bs-toggle="tooltip" title="Hors ligne"></i>
  86. {% endif %}
  87. {{ film.authered.username }}
  88. {% endif %}
  89. </td>
  90. {% endif %}
  91. <td>
  92. <a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}"><span data-bs-toggle="tooltip" data-placement="right" title="{{ film.information }}">{{ film.titre }}</span></a>
  93. {% if film.new %}<span class="badge bg-secondary text-dark">New</span>{% endif %}
  94. {% if film.nbComs %}<span class="badge bg-secondary text-dark" data-bs-toggle="tooltip" data-original-title="{{ film.nbComs }} commentaire(s)">{{ film.nbComs }}</span>{% endif %}
  95. </td>
  96. <td>
  97. {% if film.genres is defined %}
  98. {% for genre in film.genres %}
  99. <a href="{{ path("videotheque_listepargenre", {"id": genre.id}) }}"><span class="badge bg-secondary">{{ genre.name }}</span></a>
  100. {% endfor %}
  101. {% endif %}
  102. </td>
  103. <td>
  104. {% if film.realisateurs is defined %}
  105. {% for realisateur in film.realisateurs %}
  106. <a href="{{ path('videotheque_listeparreal', {"id": realisateur.id}) }}"><span class="badge bg-info">{{ realisateur.nomComplet }}</span></a>
  107. {% endfor %}
  108. {% endif %}
  109. </td>
  110. <td>
  111. {% if film.note > 0 %}
  112. <input class="rating"
  113. data-disabled="true"
  114. data-show-clear="false"
  115. data-show-caption="false"
  116. data-theme="krajee-fa"
  117. style="display:none;"
  118. min=0
  119. max=5
  120. data-step=0.5
  121. data-size="xs"
  122. value="{{ film.note }}">
  123. {% endif %}
  124. </td>
  125. <td>{{ film.annee | date('Y') }}</td>
  126. </tr>
  127. {% endfor %}
  128. </tbody>
  129. </table>
  130. </div>
  131. {% endblock %}