give this a design for vote tally, keep the jinja placeholders . {% for group in tally_by_position %}
<h2>{{ group.position }}</h2>
<table class="sortable-table">
<thead>
<tr>
<th>Candidate</th>
<th>Year</th>
<th>Course</th>
<th>Track</th>
<th>Total Votes</th>
</tr>
</thead>
<tbody>
{% for row in group.rows %}
<tr>
<td>{{ row.candidate }}</td>
<td>{{ row.year }}</td>
<td>{{ row.course }}</td>
<td>{{ row.track }}</td>
<td>{{ row.votes }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}