Numeric for loop in Django templates

djangodjango-templates

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

for i = 1 to n

Best Answer

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

{% for i in '0123456789'|make_list %}
    {{ forloop.counter }}
{% endfor %}