give space to pronouns

This commit is contained in:
Ju Luiselli 2020-02-19 21:25:42 +00:00
parent e20cdf5977
commit 843704c7f8

View file

@ -13,7 +13,7 @@ class Profile(models.Model):
)
full_name = models.CharField(max_length=1023, verbose_name=_("nom"))
nickname = models.CharField(blank=True, max_length=1023, verbose_name=_("surnom"))
pronoun = models.CharField(blank=True, max_length = 15, verbose_name=_("pronom(s) utilisé(s)"))
pronoun = models.CharField(blank=True, max_length = 1023, verbose_name=_("pronom(s) utilisé(s)"))
picture = models.ImageField(
blank=True, upload_to="picture", verbose_name=_("photo")
)