Opened 18 years ago
Closed 18 years ago
#3456 closed (fixed)
rendering help_text in newforms
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Forms | Version: | dev |
Severity: | Keywords: | help_text | |
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 help_text attribute in newforms should work the same as label in a template:
{{ form.eggs.label }}
{{ form.eggs.help_text }}
(Fails)
It took me a while to figure out why my labels were appearing on templates, but not my help text, until I specified fields:
{{ form.fields.eggs.help_text }}
(Works)
Change History (3)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
See also: http://groups.google.com/group/django-developers/browse_thread/thread/f29aa27b78b1bb4d/51b5647db148daf2 with the same issue, so you're not the only one.