Opened 17 years ago

Closed 17 years ago

#4162 closed (invalid)

Invalid plural. For model 'News' will see 'Newss' in admin page

Reported by: krylatij <krylatij@…> 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.

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: invalid
Status: newclosed

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.

Note: See TracTickets for help on using tickets.
Back to Top