Skip to content

Commit

Permalink
Improve wording
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Dec 7, 2023
1 parent 23d8777 commit af1848f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lemarche/tenders/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,13 @@ def clean(self):
if distance_location:
location = cleaned_data.get("location")
if not location:
raise ValidationError({"location": "Distance en km est spécifié, ce champ doit donc être rempli"})
raise ValidationError(
{"location": "Le champ 'Distance en km' est spécifié, ce champ doit donc être rempli"}
)
if location.kind != Perimeter.KIND_CITY:
raise ValidationError({"location": "Distance en km est spécifié, ce champ doit être une ville"})
raise ValidationError(
{"location": "Le champ 'Distance en km' est spécifié, ce champ doit être une ville"}
)


@admin.register(Tender, site=admin_site)
Expand Down

0 comments on commit af1848f

Please sign in to comment.