added plural

This commit is contained in:
Ju Luiselli 2020-02-19 21:17:30 +00:00
parent 360afc83b6
commit e20cdf5977
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -14,7 +14,7 @@
{% endif %} {% endif %}
<p> <p>
{% if profile.pronoun %} {% if profile.pronoun %}
<em>Pronom utilisé :</em>{{ profile.pronoun }} <em>Pronom(s) utilisé(s) :</em>{{ profile.pronoun }}
{% endif %} {% endif %}
</p> </p>
<p> <p>