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 , 17 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
And also two lines down,
{{ form.subject.label }}
x2