I want to use a Django forloop.counter
like this:
{% for i in "xxxxxxxxxxxxxxxxxxxx" %}
{{ i.time_code{{forloop.counter}} }}
{% endfor %}
Turns out, it's not possible to do that.
Reason to accomplish this. I have 20 database coloumns like: time_code1, time_code2 ....time_code20. So, instead of calling each separately I want to do this.