Author: jezdez
Date: 2011-07-04 09:20:29 -0700 (Mon, 04 Jul 2011)
New Revision: 16508

Modified:
   django/trunk/docs/ref/contrib/formtools/form-wizard.txt
Log:
Fixed #16382 -- Corrected form wizard docs to use one based step number in 
example template. Thanks, BernhardEssl.

Modified: django/trunk/docs/ref/contrib/formtools/form-wizard.txt
===================================================================
--- django/trunk/docs/ref/contrib/formtools/form-wizard.txt     2011-07-04 
16:20:22 UTC (rev 16507)
+++ django/trunk/docs/ref/contrib/formtools/form-wizard.txt     2011-07-04 
16:20:29 UTC (rev 16508)
@@ -181,7 +181,7 @@
     {% extends "base.html" %}
 
     {% block content %}
-    <p>Step {{ wizard.steps.current }} of {{ wizard.steps.count }}</p>
+    <p>Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}</p>
     <form action="." method="post">{% csrf_token %}
     <table>
     {{ wizard.management_form }}

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to