In dev documentation version there is no difference between ''Do this:''
and ''Don’t do this:'' in Meta section.
{{{
class Person(models.Model):
first_name = models.CharField(max_length=20)
last_name = models.CharField(max_length=40)
class Meta:
verbose_name_plural = "people"
}}}
In 4.1 version it is correct. Related to
https://code.djangoproject.com/ticket/34140 .
--
Ticket URL: <https://code.djangoproject.com/ticket/34446>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.