summaryrefslogtreecommitdiff
path: root/template/elections/ownvotes.html
blob: aee504c90843c92889afa46effa434908a5c2c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{%extends "nav_account.html"%}
{%block title%}Elections{%endblock%}
{%block content%}
<h2>Your votes - {{election.name}}</h2>
<p>
This is a list of the candidates you voted for in {{election.name}}, and what score
you gave them.
</p>

<table border="0">
<tr>
 <th>Candidate</th>
 <th>Score</th>
</tr>
{%for vote in votes %}
<tr>
 <td>{{vote.candidate.name}}</td>
 <td>{{vote.score}}</td>
</tr>
{%endfor%}
</table>

<a href="../" class="btn btn-outline-dark">Back</a>

{%endblock%}