diff --git a/ultron/followup/forms.py b/ultron/followup/forms.py index 3d98d33fe7..5075eabf46 100644 --- a/ultron/followup/forms.py +++ b/ultron/followup/forms.py @@ -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, …", } ), } diff --git a/ultron/location/models.py b/ultron/location/models.py index 4362709b34..d6369e5fe6 100644 --- a/ultron/location/models.py +++ b/ultron/location/models.py @@ -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 "?")