#33188: Configurable default verbose_name for models
-------------------------------------+-------------------------------------
Reporter: | Owner: nobody
unrealsolver |
Type: New | Status: new
feature |
Component: Database | Version: 3.2
layer (models, ORM) |
Severity: Normal | Keywords: verbose_name models
Triage Stage: | Has patch: 0
Unreviewed |
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 1
UI/UX: 0 |
-------------------------------------+-------------------------------------
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.
--
Ticket URL: <https://code.djangoproject.com/ticket/33188>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.