vote up 1 vote down star

How do I write a numeric for loop in a Django template? I mean something like

for i = 1 to n
flag

67% accept rate

4 Answers

vote up 2 vote down check

Take a look at these template filters and tags, either of which is easy enough to include in your application.

The advantage of these compared to the other solutions (passing in a range of numbers) is that, once installed, these will always be available to your templates and template authors, without having to explicitly pass a valid range through your view code.

link|flag
Thanx The former looks better to me – Lev Jul 10 at 6:37
vote up 2 vote down

You don't pass n itself, but rather range(n) [the list of integers from 0 to n-1 included], from your view to your template, and in the latter you do {% for i in therange %} (if you absolutely insist on 1-based rather than the normal 0-based index you can use forloop.counter in the loop's body;-).

link|flag
vote up 1 vote down

You can pass a binding of

{'n' : xrange(n) }

to the template, then do

{% for i in n %}
...
{% endfor %}

Note that you'll get 0-based behavior (0, 1, ... n-1).

link|flag
vote up 2 vote down

Unfortunately, that's not supported in the Django template language. There are a couple of suggestions, but they seem a little complex. I would just put a variable in the context:

...
render_to_response('foo.html', {..., 'range': range(10), ...}, ...)
...

and in the template:

{% for i in range %}
     ...
{% endfor %}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.