Fixed #6659: explained where "forloop.counter" comes from
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7315 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
39b1f1dd80
commit
7d74376aab
|
@ -37,6 +37,12 @@ A quick rundown:
|
||||||
form will alter data server-side. Whenever you create a form that alters
|
form will alter data server-side. Whenever you create a form that alters
|
||||||
data server-side, use ``method="post"``. This tip isn't specific to
|
data server-side, use ``method="post"``. This tip isn't specific to
|
||||||
Django; it's just good Web development practice.
|
Django; it's just good Web development practice.
|
||||||
|
|
||||||
|
* ``forloop.counter`` indicates how many times the ``for`` tag has
|
||||||
|
gone through its loop; for more information, see `the
|
||||||
|
documentation for the "for" tag`_.
|
||||||
|
|
||||||
|
.. _the documentation for the "for" tag: ../templates/#for
|
||||||
|
|
||||||
Now, let's create a Django view that handles the submitted data and does
|
Now, let's create a Django view that handles the submitted data and does
|
||||||
something with it. Remember, in `Tutorial 3`_, we created a URLconf for the
|
something with it. Remember, in `Tutorial 3`_, we created a URLconf for the
|
||||||
|
|
Loading…
Reference in New Issue