#14848 closed (fixed)
model verbose name
Reported by: | madisv | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.2 |
Severity: | Keywords: | ||
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 docs say:
The convention is not to capitalize the first letter of the verbose_name. Django will automatically capitalize the first letter where it needs to.
the example in the docs:
In this example, the verbose name is "Person's first name":
first_name = models.CharField("Person's first name", max_length=30)
http://docs.djangoproject.com/en/1.2/topics/db/models/#verbose-field-names
I know this is a very minor thing but just to be correct
Change History (3)
comment:1 by , 14 years ago
Component: | Uncategorized → Documentation |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 14 years ago
Note:
See TracTickets
for help on using tickets.
(In [14917]) Fixed #14848 - change example verbose name to match convention. thanks madisv for the suggestion.