Opened 18 years ago
Closed 18 years ago
#4162 closed (invalid)
Invalid plural. For model 'News' will see 'Newss' in admin page
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | contrib.admin | Version: | 0.96 |
Severity: | Keywords: | plural | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Create model 'News', add it to admin interface and you will see 'Newss'.
I guess Django automatically adds 's' to make plural form.
But for same words is senseless.
Note:
See TracTickets
for help on using tickets.
This isn't a bug. We add an 's' automatically, but you can change it with the verbose_name_plural attribute on the Meta class. See the model docs for details.