[Answered ]-Django Model field name translation

2👍

See the verbose_name of Model itself and the verbose_name and verbose_name_plural class Meta additionally.

class MyModel(models.Model):
    my_field = models.CharField(_("My field"), max_length=255)
    my_another_field = models.CharField(_("My another field"), max_length=255)

    class Meta:
        verbose_name = _("My model")
        verbose_name_plural = _("My models")

Leave a comment