-
-
- -
- {% dsfr_button label="Enregistrer mes modifications" extra_classes="fr-mt-4v" %}
-
-
+
+
{% dsfr_form_field form.sectors %}
+
+
+
+ Secteurs d'activité
+
+
+ Améliorez votre référencement en indiquant tous les secteurs d'activités sur lesquels votre struture est positionnée.
+
+
+
-
-
-
+
{% endblock content_siae_form %}
-
{% block extra_js %}
-
+
{% endblock extra_js %}
diff --git a/lemarche/www/dashboard_siaes/forms.py b/lemarche/www/dashboard_siaes/forms.py
index cc6fd93b1..807af632a 100644
--- a/lemarche/www/dashboard_siaes/forms.py
+++ b/lemarche/www/dashboard_siaes/forms.py
@@ -73,12 +73,14 @@ class SiaeEditSearchForm(forms.ModelForm):
choices=siae_constants.PRESTA_CHOICES,
required=True,
widget=forms.CheckboxSelectMultiple,
+ disabled=True,
)
geo_range = forms.ChoiceField(
label=Siae._meta.get_field("geo_range").verbose_name,
choices=siae_constants.GEO_RANGE_CHOICES,
required=True,
widget=forms.RadioSelect,
+ disabled=True,
)
sectors = GroupedModelMultipleChoiceField(
label=Sector._meta.verbose_name_plural,
@@ -86,6 +88,7 @@ class SiaeEditSearchForm(forms.ModelForm):
choices_groupby="group",
required=True,
widget=forms.CheckboxSelectMultiple,
+ disabled=True,
)
class Meta: