I was wondering if there was an easy way to implement numbers into my HTML/Javascript table.
Here is the current code:
<table style="width:75%", border="2">
<th>Club</th>
<th>Points</th>
<th>Played Games</th>
{% for team, score, game in data %}
<tr>
<td><strong>{{team}}</strong> </td>
<td><emph> {{score}}</emph> <br/></td>
<td>{{game}}</td>
{% endfor %}
</tr>
</table>
I will not post my python/flask code because I don't believe it is necessary.
All I would like to do is add a position column from 1 to the end.
Please let me know!
Thanks!