summaryrefslogtreecommitdiff
path: root/templates/motions.html
blob: ef847578bb2c350174f065b5207e7d2b89773d51 (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
43
44
45
46
{{ template "header" . }}
{{ if .Params.Flags.Unvoted }}
<a href="/motions/">Show all votes</a>
{{ else }}
<a href="/motions/?unvoted=1">Show my outstanding votes</a><br/>
{{ end }}
{{ $voter := .Voter }}
{{ if .Decisions }}
<table class="list">
    <thead>
    <tr>
        <th>Status</th>
        <th>Motion</th>
        {{ if $voter }}<th>Actions</th>{{ end }}
    </tr>
    </thead>
    <tbody>
    {{range .Decisions }}
    <tr>
        {{ template "motion_fragment" . }}
        {{ if $voter }}{{ template "motion_actions" . }}{{ end }}
    </tr>
    {{end}}
    <tr>
        <td colspan="2" class="navigation">
            {{ if .PrevPage }}<a href="?page={{ .PrevPage }}" title="previous page">&lt;</a>{{ end }}
            {{ if .NextPage }}<a href="?page={{ .NextPage }}" title="next page">&gt;</a>{{ end }}
        </td>
        {{ if $voter }}
        <td class="actions">
            <ul>
                <li><a href="/newmotion/">New Motion</a></li>
            </ul>
        </td>
        {{ end }}
    </tr>
    </tbody>
</table>
{{else}}
{{ if .Params.Flags.Unvoted }}
<p>There are no motions requiring a vote from you.</p>
{{ else }}
<p>There are no motions in the system yet.</p>
{{ end }}
{{end}}
{{ template "footer" . }}