You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-boardvoting/templates/motion.html

21 lines
460 B
HTML

{{ template "header" . }}
<a href="/motions/">Show all votes</a>
{{ $voter := .Voter }}
<table class="list">
<thead>
<th>Status</th>
<th>Motion</th>
{{ if $voter}}
<th>Actions</th>
{{ end }}
</thead>
<tbody>
<tr>
{{ with .Decision }}
{{ template "motion_fragment" .}}
{{ if $voter }}{{ template "motion_actions" . }}{{ end }}
{{ end}}
</tr>
</tbody>
</table>
{{ template "footer" . }}