|
@@ -279,15 +279,6 @@ Model style
|
|
|
|
|
|
Don't do this::
|
|
|
|
|
|
- class Person(models.Model):
|
|
|
- first_name = models.CharField(max_length=20)
|
|
|
- last_name = models.CharField(max_length=40)
|
|
|
-
|
|
|
- class Meta:
|
|
|
- verbose_name_plural = "people"
|
|
|
-
|
|
|
- Don't do this, either::
|
|
|
-
|
|
|
class Person(models.Model):
|
|
|
class Meta:
|
|
|
verbose_name_plural = "people"
|