summaryrefslogtreecommitdiff
path: root/template/elections/ownvotes.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/elections/ownvotes.html')
-rw-r--r--template/elections/ownvotes.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/template/elections/ownvotes.html b/template/elections/ownvotes.html
new file mode 100644
index 00000000..325e0c6d
--- /dev/null
+++ b/template/elections/ownvotes.html
@@ -0,0 +1,27 @@
+{%extends "nav_membership.html"%}
+{%block title%}Elections{%endblock%}
+{%block content%}
+<h1>Elections</h1>
+
+<h2>Your votes - {{election.name}}</h2>
+<p>
+This is a list of the candidates you voted for in {{elections.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>
+
+<p><a href="../">Back</a></p>
+
+{%endblock%}