blob: 19ec204d8f9aa4dfccfa8ab8052deb365c35166e (
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
26
27
28
29
30
31
32
33
|
{%extends "nav_account.html"%}
{%block title%}Elections{%endblock%}
{%block content%}
<h1>Elections</h1>
<h2>Open elections</h2>
<ul>
{%for e in open %}
<li><a href="{{e.id}}/">{{e.name}}</a> ({{e.startdate}} - {{e.enddate}}). Voting closes at 23:59 CET</li>
{%empty%}
<li>There are currently no open elections.</li>
{%endfor%}
</ul>
<h2>Upcoming elections</h2>
<ul>
{%for e in upcoming %}
<li>{{e.name}} (opens {{e.startdate}})</li>
{%empty%}
<li>There are currently no upcoming elections.</li>
{%endfor%}
</ul>
<h2>Past elections</h2>
<ul>
{%for e in past %}
<li>{%if e.resultspublic%}<a href="{{e.id}}/">{{e.name}}</a>{%else%}{{e.name}} (results are not published yet){%endif%}</li>
{%empty%}
<li>There are currently no past elections.</li>
{%endfor%}
</ul>
{%endblock%}
|