I am writing a django application, and in a loop,
{% for item in list %}
{{ forloop.counter0 }}
{% endfor %}
this will printout the number in the loop starting from 0. But I want to printout alphabet starting from 'A', so the python way to do it is chr(forloop.counter0+65), but this is inside the template, any ideas? thanks.