Opened 3 years ago

Closed 3 years ago

#33188 closed New feature (wontfix)

Configurable default verbose_name for models

Reported by: Ruslan Owned by: nobody
Component: Database layer (models, ORM) Version: 3.2
Severity: Normal Keywords: verbose_name models
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Currently, verbose name is generated as

self.verbose_name = camel_case_to_spaces(self.object_name)

(see Options.py for more details)
But I'd like to also use capfirst, so it will be nice to be able to configure default behavior across the app.

Change History (1)

comment:1 by Tim Graham, 3 years ago

Resolution: wontfix
Status: newclosed

Thanks for the proposal, but I don't think such customization is likely to be used by enough people to justify the feature.

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