瀏覽代碼

type button pour éviter les submit

François Drouhard 2 年之前
父節點
當前提交
fde3e65cea

+ 4 - 2
templates/videotheque/liste_tableaux.html.twig

@@ -58,7 +58,8 @@
 								{% set follow_icone = "fa fa-bookmark-o text-secondary fa-lg" %}
 								{% set follow_texte = "Ajouter ce film à votre liste à voir" %}
 							{% endif %}
-							<a href="#" data-fonction="switch"
+							<a href="#" type="button"
+										data-fonction="switch"
 										data-icone-actif="fa fa-bookmark fa-lg"
 										data-icone-inactif="fa fa-bookmark-o text-secondary fa-lg"
 										data-path="{{ path('maliste_modifier_a_voir') }}"
@@ -74,7 +75,8 @@
 							{% else %}
 								{% set vu_icone = '<i class="fa fa-eye-slash fa-lg 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 fa-lg text-success"

+ 4 - 2
templates/videotheque/liste_vignettes.html.twig

@@ -52,7 +52,8 @@
 							{% else %}
 								{% set vu_icone = '<i class="fa fa-eye-slash fa-lg text-secondary"></i>' %}
 							{% endif %}				
-							<button     class="btn"
+							<button     type="button"
+										class="btn"
 										data-fonction="switch"
 										data-path="{{ path('maliste_modifier_vus') }}"
 										data-content="{{ film.id }}"
@@ -69,7 +70,8 @@
 								{% set follow_icone = "fa fa-bookmark-o text-secondary fa-lg" %}
 								{% set follow_texte = "Ajouter ce film à votre liste à voir" %}
 							{% endif %}
-							<button		class="btn text-primary"
+							<button		type="button"
+										class="btn text-primary"
 										data-fonction="switch"
 										data-icone-actif="fa fa-bookmark fa-lg"
 										data-icone-inactif="fa fa-bookmark-o text-secondary fa-lg"

+ 11 - 8
templates/videotheque/voirfilm.html.twig

@@ -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"