diff --git a/inscription/forms.py b/inscription/forms.py index c9ac08d..7316792 100644 --- a/inscription/forms.py +++ b/inscription/forms.py @@ -190,6 +190,9 @@ class Meta: class Media: js = ('js/hide_resp2.js',) + css = { + 'screen': ('css/custom-dark.css',), + } class InscriptionForm3(forms.ModelForm): diff --git a/static/js/hide_resp2.js b/static/js/hide_resp2.js index 91bc8ad..eddd7c6 100644 --- a/static/js/hide_resp2.js +++ b/static/js/hide_resp2.js @@ -16,7 +16,8 @@ function Hide() { document.getElementById('div_id_1-sociopro_resp2').style.display = ''; } } -// Vérifie id_1-resp2 est à aucun (fonction Hide après le cargement du document +// Vérifie id_1-resp2 est à aucun (fonction Hide) après le chargement du document. +// Utile lors du retour en arrière dans le formulaire document.addEventListener("DOMContentLoaded", function() { Hide(); });