liste.html.twig 4.5 KB

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