On 6 Feb 2008, at 4:23 pm, [EMAIL PROTECTED] wrote:

>
> Hi guys,
>
> Trying to figure out how to use the forloop.counter in a template but
> to add it to a field to increment the name of the field each time. for
> example.. in my template i will have this
>
> {% for div in divs %}
> <td>{{ form.name }}</td>
> {% endfor %}
>
> so this will result in ...
>
> name
> name
> name etc..
>
> I need it to be name1, name2 , name3
>
> I was thinking of something like this although this does not work. is
> there a way of using the %s %i in a template?
>
> {% for div in divs %}
> <td>{{ form.name|forloop.counter }}</td>
> {% endfor %}
>
> If i just did it manualy like below it works fine
>
> {% for div in divs %}
> <input type="text" name="name{{ forloop.counter }}" />
> {% endfor %}
>
> Any help would be greatly appreciated.

Does doing this do what you want?

{% for div in divs %}
<input type="text" name="{{ form.name }}{{ forloop.counter }}" />
{% endfor %}

or have I completely misunderstood what you meant?

-- 
David Reynolds
[EMAIL PROTECTED]



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

Reply via email to