Opened 17 years ago

Closed 17 years ago

#4395 closed (fixed)

Error in the online documentation of newforms

Reported by: Amit Owned by: Jacob
Component: Documentation Version: dev
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

At http://www.djangoproject.com/documentation/newforms/, at the section "COMPLEX TEMPLATE OUTPUT", there is an error in the second code sample.

Each line is something like:
<li>{{ form.sender.label }} {{ form.sender.label }}</li>

Where as it should be:
<li>{{ form.sender.label }} {{ form.sender }}</li>

Change History (2)

comment:1 by Chris Beaven, 17 years ago

Triage Stage: UnreviewedAccepted

And also two lines down, {{ form.subject.label }} x2

comment:2 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [5358]) Fixed #4395 -- Fixed a couple of typos in the examples.

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