#9896 closed (fixed)
Error message and mistake in documentation
Reported by: | Steven Skoczen | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
On: http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#using-the-formset-in-the-template
An error message is listed:
System Message: WARNING/2 (/home/jacob/django-docs/docs/topics/forms/modelforms.txt) undefined label: understanding-the-managementform
That likely shouldn't be there!
Additionally, there is an error in the documentation just below:
"Third, you can manually render each field:
...
{% for form in formset.formset %}
should read
{% for form in formset.forms %}
Change History (2)
comment:1 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 16 years ago
Note:
See TracTickets
for help on using tickets.
(In [9672]) Fixed #9896 -- Corrected a couple uses of
formset.forms
, thanks aglzen.