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. |
|||||||||||||||||
|
|
I've used a simple technique that works nicely for small cases with no special tags and no additional context. Sometimes this comes in handy
Adjust the length of "xxxxxxxxxxxxxxxxxxxx" according to your needs. "xxx" to just do 3 iterations, etc. |
|||||||||||||||||
|
|
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:
|
|||
|
|
|
Just incase anyone else comes across this question… I've created a template tag which lets you create a
Accepts the same arguments as the 'range' builtin and creates a list containing
the result of 'range'.
Syntax:
{% mkrange [start,] stop[, step] as context_name %}
For example:
{% mkrange 5 10 2 as some_range %}
{% for i in some_range %}
{{ i }}: Something I want to repeat\n
{% endfor %}
Produces:
5: Something I want to repeat
7: Something I want to repeat
9: Something I want to repeat
|
|||||
|
|
My take on this issue, i think is the nicest. I keep a my_filters.py on the templatetags directory.
And you would use like this:
|
|||
|
|
|
You don't pass |
||||
|
|
|
Check out http://djangosnippets.org/snippets/2147/ variable/filter support for range values. Based on wolever's snippet. |
|||
|
|
|
You can pass a binding of
to the template, then do
Note that you'll get 0-based behavior (0, 1, ... n-1). |
|||
|
|
|
|||
|
|
|
If the number is coming from a model, I found this to be a nice patch to the model:
|
|||
|
|
|
You should use "slice" in template, a example like this: in views.py
in store_list.html:
|
|||
|
|