liste_vignettes.html.twig 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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="d-flex justify-content-between">
  10. <div class="d-flex">
  11. {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  12. <p class="me-3"><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>
  13. <p><a class="btn btn-primary" role="button" href="{{ path('videotheque_ajouter_tmdb') }}"><i class="fa fa-plus-square fa-lg"></i> Ajouter par TMDB</a></p>
  14. {% endif %}
  15. </div>
  16. <div class="">
  17. <p>Filtrer par film au dessus de
  18. <input class="rating"
  19. data-disabled="false"
  20. data-language="fr"
  21. data-show-clear="true"
  22. data-show-caption="false"
  23. data-theme="krajee-fa"
  24. data-toggle="star-filter"
  25. data-path="#tableFilms"
  26. style="display:none;"
  27. min=0
  28. max=5
  29. data-step=1
  30. data-size="sm"
  31. value="0">
  32. </p>
  33. </div>
  34. </div>
  35. <section id="tableFilms">
  36. {% for film in listeFilms %}
  37. <article class="card border-primary mb-4" data-controller="collapser" data-auteur="{{ film.authered.nomComplet }}">
  38. <div class="card-header d-flex justify-content-between">
  39. <h3 class="card-title"><a class="" href="{{ path('videotheque_voirfilm', {'id': film.id}) }}"><span data-bs-toggle="tooltip" data-placement="right" title="{{ film.information }}">{{ film.titre }}</span></a>
  40. {% if film.new %}<span class="badge bg-success">New</span>{% endif %}
  41. </h3>
  42. <div class="d-flex">
  43. {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  44. <div class="me-3">
  45. {% if app.user.haveSeen(film) %}
  46. {% set vu_icone = '<i class="fa fa-eye fa-lg text-success"></i>' %}
  47. {% else %}
  48. {% set vu_icone = '<i class="fa fa-eye-slash fa-lg text-secondary"></i>' %}
  49. {% endif %}
  50. <button type="button"
  51. class="btn"
  52. data-fonction="switch"
  53. data-path="{{ path('maliste_modifier_vus') }}"
  54. data-content="{{ film.id }}"
  55. data-icone-actif = "fa fa-eye fa-lg text-success"
  56. data-icone-inactif = "fa fa-eye-slash fa-lg text-secondary">
  57. {{ vu_icone | raw }}
  58. </button>
  59. </div>
  60. <div class="me-3">
  61. {% if app.user.wantToSee(film) %}
  62. {% set follow_icone = "fa fa-bookmark fa-lg" %}
  63. {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
  64. {% else %}
  65. {% set follow_icone = "fa fa-bookmark-o text-secondary fa-lg" %}
  66. {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
  67. {% endif %}
  68. <button type="button"
  69. class="btn text-primary"
  70. data-fonction="switch"
  71. data-icone-actif="fa fa-bookmark fa-lg"
  72. data-icone-inactif="fa fa-bookmark-o text-secondary fa-lg"
  73. data-path="{{ path('maliste_modifier_a_voir') }}"
  74. data-bs-toggle="tooltip"
  75. title="{{ follow_texte }}"
  76. data-content="{{ film.id }}">
  77. <i class="{{ follow_icone }}"></i>
  78. </button>
  79. </div>
  80. {% endif %}
  81. <div class="">
  82. <button class="btn text-primary" data-bs-toggle="collapse" data-bs-target="#collapse-id-{{ film.id }}"><i data-collapser-target="button" class="fa fa-chevron-circle-right fa-lg"></i></button>
  83. </div>
  84. </div>
  85. </div>
  86. <div class="card-body collapse" id="collapse-id-{{ film.id }}" data-collapser-target="collapse">
  87. <table class="table">
  88. <tbody>
  89. <tr>
  90. <th style="width: 9em;">Année</th>
  91. <td>{{ film.annee | date('Y') }}</td>
  92. <tr>
  93. <tr>
  94. <th>Réalisateur(s)</th>
  95. <td>
  96. {% for realisateur in film.realisateurs %}
  97. <a href="{{ path('videotheque_listeparreal', {'id': realisateur.id}) }}"><span class="badge bg-info rounded-pill text-dark">{{ realisateur.nomComplet }}</span></a>
  98. {% endfor %}
  99. </td>
  100. </tr>
  101. <tr>
  102. <th>Genre</th>
  103. <td>
  104. {% for genre in film.genres %}
  105. <a href="{{ path('videotheque_listepargenre', {'id': genre.id}) }}"><span class="badge bg-success rounded-pill">{{ genre.name }}</span></a>
  106. {% endfor %}
  107. </td>
  108. </tr>
  109. {% if film.information %}
  110. <tr>
  111. <th>Informations</th>
  112. <td>{{ film.information | nl2br }}</td>
  113. </tr>
  114. {% endif %}
  115. {% if film.dateSortie %}
  116. <tr>
  117. <th>Date de sortie</th>
  118. <td>{{ film.dateSortie | date('d/m/y')}}</td>
  119. </tr>
  120. {% endif %}
  121. </tbody>
  122. </table>
  123. </div>
  124. <div class="card-footer d-flex justify-content-between">
  125. <div class="d-flex">
  126. <div class="me-3">
  127. <input class="rating"
  128. data-theme="krajee-fa"
  129. data-language="fr"
  130. data-display-only="true"
  131. data-show-caption="false"
  132. style="display:none;"
  133. min=0
  134. max=5
  135. data-step=0.5
  136. data-size="xs"
  137. value="{{ film.note }}">
  138. </div>
  139. <div class="">
  140. {% if film.nbComs %}
  141. <a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}#coms"><span class="badge bg-warning text-dark">{{ film.nbComs }} commentaire{% if film.nbComs > 1 %}s{% endif %}</span></a>
  142. {% endif %}
  143. </div>
  144. </div>
  145. <div class="">
  146. {% if film.authered is defined %}
  147. Ajouté par
  148. {{ film.authered.username }}
  149. {% if film.authered.activeNow %}
  150. <i class="fa fa-user text-success" data-bs-toggle="tooltip" title="En ligne"></i>
  151. {% else %}
  152. <i class="fa fa-user-o text-secondary" data-bs-toggle="tooltip" title="Hors ligne"></i>
  153. {% endif %}
  154. {% endif %}
  155. </div>
  156. </div>
  157. </article>
  158. {% endfor %}
  159. </section>
  160. {% endblock %}