21 lines
No EOL
460 B
HTML
21 lines
No EOL
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" . }} |