#13301 closed (fixed)
Wrong capitalization in result_headers' texts
Reported by: | Evandro Myller | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | admin | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The title
-- or capfirst
-- formatting (used in result_headers
) can't be applied to Models' field names/methods that have a short_description
defined.
Eg: Some method that has short_description = 'Disc. US$'
would be displayed as 'Disc. us$'.
It doesn't happen in previous versions of Django.
Change History (3)
comment:1 by , 15 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [12947]) Fixed #13301 -- Corrected problem with capitalization of changelist row headers in admin. Thanks to emyller for the report.