summaryrefslogtreecommitdiff
path: root/templates/motions.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/motions.html')
-rw-r--r--templates/motions.html70
1 files changed, 20 insertions, 50 deletions
diff --git a/templates/motions.html b/templates/motions.html
index f717d78..ef84757 100644
--- a/templates/motions.html
+++ b/templates/motions.html
@@ -1,12 +1,9 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/html">
-<head>
- <title>CAcert Board Decisions</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <link rel="stylesheet" type="text/css" href="/static/styles.css"/>
-</head>
-<body>
+{{ 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">
@@ -20,57 +17,30 @@
<tbody>
{{range .Decisions }}
<tr>
- <td class="{{.Status}}">
- {{ if eq .Status 0 }}Pending {{ .Due}}
- {{ else if eq .Status 1}}Approved {{ .Modified}}
- {{ else if eq .Status -1}}Declined {{ .Modified}}
- {{ else if eq .Status -2}}Withdrawn {{ .Modified}}
- {{ else }}Unknown
- {{ end }}
- </td>
- <td>
- <i><a href="/motions/{{ .Tag}}">{{ .Tag}}</a></i><br />
- <b>{{ .Title}}</b><br />
- <pre>{{ wrap 76 .Content }}</pre>
- <br />
- <i>Due: {{.Due}}</i><br/>
- <i>Proposed: {{.Proposer}} ({{.Proposed}})</i><br/>
- <i>Vote type: {{.VoteType}}</i><br/>
- <i>Aye|Naye|Abstain: {{.Ayes}}|{{.Nayes}}|{{.Abstains}}</i><br />
- {{ if .Votes }}
- <i>Votes:</i><br/>
- {{ range .Votes}}
- <i>{{ .Name }}: {{ .Vote}}</i><br />
- {{ end }}
- {{ else}}
- <i><a href="/motions/{{.Tag}}?showvotes=1">Show Votes</a></i>
- {{ end }}
- </td>
- {{ if $voter }}
- <td>
- {{ if eq .Status 0 }}
- <ul>
- <li><a href="/vote/{{ .Tag }}/aye">Aye</a></li>
- <li><a href="/vote/{{ .Tag }}/abstain">Abstain</a></li>
- <li><a href="/vote/{{ .Tag }}/naye">Naye</a></li>
- <li><a href="/proxy/{{ .Tag }}">Proxy Vote</a></li>
- <li><a href="/motions/{{ .Tag }}/edit">Modify</a></li>
- <li><a href="/motions/{{ .Tag }}/withdraw">Withdraw</a></li>
- </ul>
- {{ end }}
- </td>{{ end }}
+ {{ template "motion_fragment" . }}
+ {{ if $voter }}{{ template "motion_actions" . }}{{ end }}
</tr>
{{end}}
<tr>
- <td colspan="{{ if $voter }}3{{ else }}2{{ end }}" class="navigation">
+ <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}}
-</body>
-</html>
+{{ template "footer" . }} \ No newline at end of file