liste_vignettes.html.twig 5.5 KB

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