diff --git a/sv/templates/sv/fichedetection_detail.html b/sv/templates/sv/fichedetection_detail.html index e3dec92..6b62ef5 100644 --- a/sv/templates/sv/fichedetection_detail.html +++ b/sv/templates/sv/fichedetection_detail.html @@ -103,14 +103,13 @@

Objet de l'évènement

{{ fichedetection.date_premier_signalement|default:"nc." }}

-

Commentaire

-

{{ fichedetection.commentaire|default:"nc." }}

+

Végétaux infestés

+

{{ fichedetection.vegetaux_infestes|default:"nc." }}

-

Végétaux inféstés

-

{{ fichedetection.vegetaux_infestes|default:"nc." }}

+

Commentaire

+

{{ fichedetection.commentaire|default:"nc." }}

- diff --git a/sv/templates/sv/fichedetection_form.html b/sv/templates/sv/fichedetection_form.html index 48f1069..370fcad 100644 --- a/sv/templates/sv/fichedetection_form.html +++ b/sv/templates/sv/fichedetection_form.html @@ -137,7 +137,7 @@

Objet de l'évènement

- +

diff --git a/sv/tests/test_fichedetection_create.py b/sv/tests/test_fichedetection_create.py index fb0cec2..78af12c 100644 --- a/sv/tests/test_fichedetection_create.py +++ b/sv/tests/test_fichedetection_create.py @@ -153,8 +153,8 @@ def test_fiche_detection_create_without_lieux_and_prelevement( page.get_by_label("Date 1er signalement").fill("2024-04-21") page.get_by_label("Commentaire").click() page.get_by_label("Commentaire").fill("test commentaire") - page.get_by_label("Végétaux inféstés").click() - page.get_by_label("Végétaux inféstés").fill("3 citronniers") + page.get_by_label("Végétaux infestés").click() + page.get_by_label("Végétaux infestés").fill("3 citronniers") page.get_by_label("Mesures conservatoires immé").click() page.get_by_label("Mesures conservatoires immé").fill("test mesures conservatoires") page.get_by_label("Mesures de consignation").click() diff --git a/sv/tests/test_fichedetection_update.py b/sv/tests/test_fichedetection_update.py index 083e957..1a90bb1 100644 --- a/sv/tests/test_fichedetection_update.py +++ b/sv/tests/test_fichedetection_update.py @@ -97,7 +97,7 @@ def test_fiche_detection_update_page_content( # Commentaire expect(form_elements.commentaire_input).to_have_value(fiche_detection.commentaire) - # Végétaux inféstés + # Végétaux infestés expect(form_elements.vegetaux_infestes_input).to_have_value(fiche_detection.vegetaux_infestes) # Mesures conservatoires immédiates diff --git a/sv/tests/test_utils.py b/sv/tests/test_utils.py index 2e5822f..290641f 100644 --- a/sv/tests/test_utils.py +++ b/sv/tests/test_utils.py @@ -132,11 +132,11 @@ def commentaire_input(self) -> Locator: @property def vegetaux_infestes_label(self) -> Locator: - return self.page.get_by_text("Végétaux inféstés") + return self.page.get_by_text("Végétaux infestés") @property def vegetaux_infestes_input(self) -> Locator: - return self.page.get_by_label("Végétaux inféstés") + return self.page.get_by_label("Végétaux infestés") @property def mesures_conservatoires_immediates_label(self) -> Locator: