liste_vignettes.html.twig 5.3 KB

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