|
@@ -10,20 +10,23 @@
|
|
|
{% set follow_icone = "fa fa-bookmark-o text-secondary" %}
|
|
|
{% set follow_texte = "Ajouter ce film à votre liste à voir" %}
|
|
|
{% endif %}
|
|
|
- <a href="#" data-fonction="switch"
|
|
|
- data-icone-actif="fa fa-bookmark"
|
|
|
- data-icone-inactif="fa fa-bookmark-o text-secondary"
|
|
|
- data-path="{{ path('maliste_modifier_a_voir') }}"
|
|
|
- data-bs-toggle="tooltip"
|
|
|
- title="{{ follow_texte }}"
|
|
|
- data-content="{{ film.id }}">
|
|
|
+ <a href="#"
|
|
|
+ type="button"
|
|
|
+ data-fonction="switch"
|
|
|
+ data-icone-actif="fa fa-bookmark"
|
|
|
+ data-icone-inactif="fa fa-bookmark-o text-secondary"
|
|
|
+ data-path="{{ path('maliste_modifier_a_voir') }}"
|
|
|
+ data-bs-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"
|
|
|
+ <a href="#" type="button"
|
|
|
+ data-fonction="switch"
|
|
|
data-path="{{ path('maliste_modifier_vus') }}"
|
|
|
data-content="{{ film.id }}"
|
|
|
data-icone-actif = "fa fa-eye text-success"
|