Opened 17 years ago

Closed 17 years ago

#3456 closed (fixed)

rendering help_text in newforms

Reported by: Jeff Bauer <jbauer@…> 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:2 by Michael Radziej <mir@…>, 17 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Adrian Holovaty, 17 years ago

Resolution: fixed
Status: newclosed

(In [4521]) Fixed #3456 -- Made it easier/more intuitive to render newforms help_text in templates

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