|
@@ -82,6 +82,7 @@
|
|
|
<td>
|
|
|
<a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}"><span data-bs-toggle="tooltip" data-placement="right" title="{{ film.information }}">{{ film.titre }}</span></a>
|
|
|
{% if film.new %}<span class="badge bg-success">New</span>{% endif %}
|
|
|
+ {% if estEnSalle(film.dateSortie) %}<span class="badge text-bg-success">En salle</span>{% endif %}
|
|
|
{% if film.nbComs %}<span class="badge bg-info rounded-pill" data-bs-toggle="tooltip" title="{{ film.nbComs }} commentaire(s)">{{ film.nbComs }}</span>{% endif %}
|
|
|
|
|
|
</td>
|
|
@@ -98,39 +99,26 @@
|
|
|
<a href="{{ path('videotheque_listeparreal', {"id": realisateur.id}) }}"><span class="badge bg-info">{{ realisateur.nomComplet }}</span></a>
|
|
|
{% endfor %}
|
|
|
{% endif %}
|
|
|
- <td>
|
|
|
- <a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}"><span data-bs-toggle="tooltip" data-placement="right" title="{{ film.information }}">{{ film.titre }}</span></a>
|
|
|
- {% if film.new %}<span class="badge bg-success">New</span>{% endif %}
|
|
|
- {% if film.nbComs %}<span class="badge bg-info rounded-pill" data-bs-toggle="tooltip" title="{{ film.nbComs }} commentaire(s)">{{ film.nbComs }}</span>{% endif %}
|
|
|
-
|
|
|
</td>
|
|
|
<td>
|
|
|
- {% if film.genres is defined %}
|
|
|
- {% for genre in film.genres %}
|
|
|
- <a href="{{ path("videotheque_listepargenre", {"id": genre.id}) }}"><span class="badge bg-secondary">{{ genre.name }}</span></a>
|
|
|
- {% endfor %}
|
|
|
+ {% if film.note > 0 %}
|
|
|
+ <input class="rating"
|
|
|
+ data-disabled="true"
|
|
|
+ data-show-clear="false"
|
|
|
+ data-show-caption="false"
|
|
|
+ data-theme="krajee-fa"
|
|
|
+ style="display:none;"
|
|
|
+ min=0
|
|
|
+ max=5
|
|
|
+ data-step=0.5
|
|
|
+ data-size="xs"
|
|
|
+ value="{{ film.note }}">
|
|
|
{% endif %}
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- {% if film.note > 0 %}
|
|
|
- <input class="rating"
|
|
|
- data-disabled="true"
|
|
|
- data-show-clear="false"
|
|
|
- data-show-caption="false"
|
|
|
- data-theme="krajee-fa"
|
|
|
- style="display:none;"
|
|
|
- min=0
|
|
|
- max=5
|
|
|
- data-step=0.5
|
|
|
- data-size="xs"
|
|
|
- value="{{ film.note }}">
|
|
|
- {% endif %}
|
|
|
- </td>
|
|
|
- <td>{{ film.annee | date('Y') }}</td>
|
|
|
- <td>{% if film.dateSortie %}{{ film.dateSortie | date('d/m/y')}}{% endif %}</td>
|
|
|
- </tr>
|
|
|
- {% endfor %}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
+ </td>
|
|
|
+ <td>{{ film.annee | date('Y') }}</td>
|
|
|
+ <td>{% if film.dateSortie %}{{ film.dateSortie | date('d/m/y')}}{% endif %}</td>
|
|
|
+ </tr>
|
|
|
+ {% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
{% endblock %}
|