{% for match in response %}
    <tr>
      <td>{{ match.i.position }}</td>
      <td>{{ match.i.team.name }}</td>
      <td>{{ match.i.games.played }}</td>
      <td>{{ match.i.games.win.total }}</td>
      <td>{{ match.i.games.lose.total }}</td>
      <td>{{ match.i.games.win.percentage }}</td>
    </tr>
    </tr>
  {% endfor %}
I am trying to increment the value of 'i' within a for loop in my standings.html django project. I am having trouble doing this as django doesnt seem to like me trying to increment values. Is there any way to fix this? I would like the value to start at 0 and increase by 1 in each iteration of the loop.
 
     
    