French word removed
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Gregory Trullemans 2021-12-20 13:31:43 +01:00
parent 0fdbfe11dd
commit 5991ec221a
2 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ class AccidentForm(forms.ModelForm):
"informations": forms.Textarea(
attrs={
"class": "form-control",
"placeholder": "Informations about accident: context (why, where, …), consequencies, ",
"placeholder": "Informations about accident: context (why, where, …), consequencies, re-education exercices, ",
}
),
}

View File

@ -71,4 +71,4 @@ class Club(models.Model):
active = models.BooleanField(default=1, verbose_name="Active")
def __str__(self):
return "%s (à %s)" % (self.name, self.place.city if self.place.city else "?")
return "%s (%s)" % (self.name, self.place.city if self.place.city else "?")