summaryrefslogtreecommitdiff
path: root/template/membership/meetingproxy.html
blob: 88918ca707a15aeebce644aec9c97c68a30ce7b9 (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
34
35
36
37
38
39
40
41
42
{%extends "nav_account.html"%}
{%block title%}Proxy voting{%endblock%}
{%block content%}
<h1>Proxy voting</h1>

{%if key.proxyname %}
<h2>Proxy voter</h2>
<p>
  You are currently set up to allow {{key.proxyname}} to attend and vote on your
  behalf in {{meeting.name}}.
</p>
<p>
  For them to retrieve the instructions for connecting, please ask them to visit
  the page at
  <a href="/membership/meetings/{{meeting.id}}/{{key.proxyaccesskey}}/">{{sitebase}}/membership/meetings/{{meeting.id}}/{{key.proxyaccesskey}}/</a>
  within 4 hours before the meeting.
</p>
{%else%}
<p>
  On this form you can assign a proxy voter. This person will be able to attend
  and vote on your behalf in {{meeting.name}}.
</p>
{%endif%}

<h2>New proxy voter</h2>
{%if form.errors%}
<p>
<b>NOTE!</b> Your submitted form contained errors and has <b>not</b> been saved!
</p>
{%endif%}

<form method="post" action=".">{% csrf_token %}
<table>
{{form}}
</table>

<input type="submit" value="Save" class="btn btn-primary">
</form>

<br/>
<a href="../../" class="btn btn-outline-dark">Return to list of meetings</a>
{%endblock%}