|
@@ -30,9 +30,9 @@
|
|
|
<tr>
|
|
|
<td>
|
|
|
{% if film.usersWantToView.contains(app.user) %}
|
|
|
- <a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="fa fa-star fa-lg"></i></a>
|
|
|
+ <a href="#" class="boutonVoir" data-toggle="tooltip" title="Supprimer ce film de votre liste à voir" data-content="{{ film.id }}"><i class="fa fa-star fa-lg"></i></a>
|
|
|
{% else %}
|
|
|
- <a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="fa fa-star-o fa-lg"></i></a>
|
|
|
+ <a href="#" class="boutonVoir" data-toggle="tooltip" title="Ajouter ce film à vos liste à voir" data-content="{{ film.id }}"><i class="fa fa-star-o fa-lg"></i></a>
|
|
|
|
|
|
{% endif %}
|
|
|
</td>
|
|
@@ -77,8 +77,8 @@
|
|
|
<td>{{ film.annee | date('Y') }}</td>
|
|
|
<td>{% if not film.lien == "" %}<a target="_blank" href="{{ film.lien }}"><i class="fa fa-external-link fa-lg"></i></a>{% endif %}</td>
|
|
|
<td>
|
|
|
- {% 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 %}
|
|
|
- <a href="{{ path('videotheque_modifier', {'id': film.id}) }}"><i class="fa fa-edit fa-lg", style="color:DodgerBlue;"></i></a>
|
|
|
+ <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>
|
|
|
+ {% 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 %}
|
|
|
</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|