|
@@ -2,33 +2,34 @@
|
|
|
|
|
|
{% block title %}Fiche film - {{ film.titre }}{% endblock %}
|
|
|
{% block titre %}
|
|
|
- {% if film.usersWantToView.contains(app.user) %}
|
|
|
- {% set follow_icone = "fa fa-star" %}
|
|
|
- {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
|
|
|
- {% else %}
|
|
|
- {% set follow_icone = "fa fa-star-o" %}
|
|
|
- {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ {% if film.usersWantToView.contains(app.user) %}
|
|
|
+ {% set follow_icone = "fa fa-star" %}
|
|
|
+ {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
|
|
|
+ {% else %}
|
|
|
+ {% set follow_icone = "fa fa-star-o" %}
|
|
|
+ {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
|
|
|
+ {% endif %}
|
|
|
+ <a href="#" data-fonction="switch"
|
|
|
+ data-icone-actif="fa fa-star"
|
|
|
+ data-icone-inactif="fa fa-star-o"
|
|
|
+ data-path="{{ path('maliste_modifier_a_voir') }}"
|
|
|
+ data-toggle="tooltip"
|
|
|
+ title="{{ follow_texte }}"
|
|
|
+ data-content="{{ film.id }}">
|
|
|
+ <i class="{{ follow_icone }}"></i></a>
|
|
|
+ {% if film.usersWhoSeen.contains(app.user) %}
|
|
|
+ {% set vu_icone = '<i class="fa fa-eye text-success"></i>' %}
|
|
|
+ {% else %}
|
|
|
+ {% set vu_icone = '<i class="fa fa-eye-slash text-secondary"></i>' %}
|
|
|
+ {% endif %}
|
|
|
+ <a href="#" data-fonction="switch"
|
|
|
+ data-path="{{ path('maliste_modifier_vus') }}"
|
|
|
+ data-content="{{ film.id }}"
|
|
|
+ data-icone-actif = "fa fa-eye text-success"
|
|
|
+ data-icone-inactif = "fa fa-eye-slash text-secondary">
|
|
|
+ {{ vu_icone | raw }}</a>
|
|
|
{% endif %}
|
|
|
- <a href="#" data-fonction="switch"
|
|
|
- data-icone-actif="fa fa-star"
|
|
|
- data-icone-inactif="fa fa-star-o"
|
|
|
- data-path="{{ path('maliste_modifier_a_voir') }}"
|
|
|
- data-toggle="tooltip"
|
|
|
- title="{{ follow_texte }}"
|
|
|
- data-content="{{ film.id }}">
|
|
|
- <i class="{{ follow_icone }}"></i></a>
|
|
|
- {% if film.usersWhoSeen.contains(app.user) %}
|
|
|
- {% set vu_icone = '<i class="fa fa-eye text-success"></i>' %}
|
|
|
- {% else %}
|
|
|
- {% set vu_icone = '<i class="fa fa-eye-slash text-secondary"></i>' %}
|
|
|
- {% endif %}
|
|
|
- <a href="#" data-fonction="switch"
|
|
|
- data-path="{{ path('maliste_modifier_vus') }}"
|
|
|
- data-content="{{ film.id }}"
|
|
|
- data-icone-actif = "fa fa-eye text-success"
|
|
|
- data-icone-inactif = "fa fa-eye-slash text-secondary">
|
|
|
- {{ vu_icone | raw }}</a>
|
|
|
-
|
|
|
{{ film.titre }}
|
|
|
|
|
|
{% if film.note > 0 %}
|
|
@@ -56,11 +57,13 @@
|
|
|
<div class="card-header">
|
|
|
<div class="row">
|
|
|
<h5 class="col-10">Fiche technique</h5>
|
|
|
- <div class="col-2">
|
|
|
- <a data-toggle="tooltip" title="Modifier la fiche du film" href="{{ path('videotheque_modifier', {'id': film.id}) }}"><i class="fa fa-edit fa-lg"></i></a>
|
|
|
- {% 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 %}
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ <div class="col-2">
|
|
|
+ <a data-toggle="tooltip" title="Modifier la fiche du film" href="{{ path('videotheque_modifier', {'id': film.id}) }}"><i class="fa fa-edit fa-lg"></i></a>
|
|
|
+ {% 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 %}
|
|
|
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="card-body">
|
|
@@ -70,13 +73,25 @@
|
|
|
<dt class="col-4">Réalisateur(s)</dt>
|
|
|
<dd class="col-8">
|
|
|
{% for realisateur in film.realisateurs %}
|
|
|
- <a href="{{ path('videotheque_listeparreal', {'id': realisateur.id}) }}"><span class="badge badge-info">{{ realisateur.nomComplet }}</span></a>
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ <a href="{{ path('videotheque_listeparreal', {'id': realisateur.id}) }}">
|
|
|
+ {% endif %}
|
|
|
+ <span class="badge badge-info">{{ realisateur.nomComplet }}</span>
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ </a>
|
|
|
+ {% endif %}
|
|
|
{% endfor %}
|
|
|
</dd>
|
|
|
<dt class="col-4">Genre</dt>
|
|
|
<dd class="col-8">
|
|
|
{% for genre in film.genres %}
|
|
|
- <a href="{{ path('videotheque_listepargenre', {'id': genre.id}) }}"><span class="badge badge-info">{{ genre.name }}</span></a>
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ <a href="{{ path('videotheque_listepargenre', {'id': genre.id}) }}">
|
|
|
+ {% endif %}
|
|
|
+ <span class="badge badge-info">{{ genre.name }}</span>
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ </a>
|
|
|
+ {% endif %}
|
|
|
{% endfor %}
|
|
|
</dd>
|
|
|
{% if film.lien is not null %}
|
|
@@ -128,12 +143,14 @@
|
|
|
<h5>Commentaires</h5>
|
|
|
</div>
|
|
|
<div class="card-body">
|
|
|
- <p>
|
|
|
- <a data-toggle="collapse" role="button" href="#collapseCommentaire" aria-expanded="false" aria-controls="collapseCommentaire">Commenter <i class="fa fa-chevron-down"></i></a>
|
|
|
- </p>
|
|
|
- <div class="collapse" id="collapseCommentaire">
|
|
|
- {{ include('videotheque/form_commentaire.html.twig') }}
|
|
|
- </div>
|
|
|
+ {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
|
+ <p>
|
|
|
+ <a data-toggle="collapse" role="button" href="#collapseCommentaire" aria-expanded="false" aria-controls="collapseCommentaire">Commenter <i class="fa fa-chevron-down"></i></a>
|
|
|
+ </p>
|
|
|
+ <div class="collapse" id="collapseCommentaire">
|
|
|
+ {{ include('videotheque/form_commentaire.html.twig') }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
<div class="list-group">
|
|
|
{% for commentaire in commentaires %}
|
|
|
<div class="list-group-item">
|