How do I write a numeric for loop in a Django template? I mean something like
for i = 1 to n
|
|
How do I write a numeric
|
||
|
|
|
|
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. |
|||
|
|
|
You don't pass |
|||
|
|
|
|
You can pass a binding of
to the template, then do
Note that you'll get 0-based behavior (0, 1, ... n-1). |
||
|
|
|
|
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:
and in the template:
|
||
|
|