summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoung Yang <afe.young@gmail.com>2014-12-05 23:23:14 +0800
committerTim Graham <timograham@gmail.com>2014-12-05 11:33:16 -0500
commit58e0d6bdbc2f7db6c7377bcdaa3d4bd23f119d15 (patch)
treeab0e827d11b0e9b8d5073ff741f35d7949f7c991
parent6ba960266a14756dbf6365029d46bd157bd2b155 (diff)
[1.7.x] Fixed #23955 -- Corrected formset fields in topic guide.
Backport of f0c7a6f36005d489e049236922abe0bd3a3eac2c from master
-rw-r--r--docs/topics/forms/formsets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 576f32a6de..80a9386f4c 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -631,9 +631,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 %}