liste.html.twig 5.1 KB

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