Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#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 Gary Wilson, 15 years ago

Resolution: fixed
Status: newclosed

(In [9672]) Fixed #9896 -- Corrected a couple uses of formset.forms, thanks aglzen.

comment:2 by Gary Wilson, 15 years ago

(In [9673]) [1.0.X] Fixed #9896 -- Corrected a couple uses of formset.forms, thanks aglzen.

Backport of r9672 from trunk.

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