diff options
| author | Young Yang <afe.young@gmail.com> | 2014-12-05 23:23:14 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-05 11:33:20 -0500 |
| commit | fdbe038ced67f567853cde4ea154747f5074344f (patch) | |
| tree | 9a21c5164e7a73abae30d040640a21fc55456df7 | |
| parent | 7e47c3e6afd4084c9763a670b078c54e84b8f895 (diff) | |
[1.6.x] Fixed #23955 -- Corrected formset fields in topic guide.
Backport of f0c7a6f36005d489e049236922abe0bd3a3eac2c from master
| -rw-r--r-- | docs/topics/forms/formsets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 9fbc6d2a2a..47653879a9 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -560,9 +560,9 @@ If you manually render fields in the template, you can render <form method="post" action=""> {{ formset.management_form }} {% for form in formset %} - {{ form.id }} <ul> <li>{{ form.title }}</li> + <li>{{ form.pub_date }}</li> {% if formset.can_delete %} <li>{{ form.DELETE }}</li> {% endif %} |
