added plural
This commit is contained in:
parent
360afc83b6
commit
e20cdf5977
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||||
)
|
)
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue