22 lines
467 B
HTML
22 lines
467 B
HTML
{{ template "header" . }}
|
|
<a href="/motions/">Show all votes</a>
|
|
<table class="list">
|
|
<thead>
|
|
<tr>
|
|
<th>Status</th>
|
|
<th>Motion</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
{{ with .Decision }}
|
|
{{ template "motion_fragment" .}}
|
|
{{ end}}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<form action="/motions/{{ .Decision.Tag }}/withdraw" method="post">
|
|
<input type="submit" value="Withdraw" />
|
|
</form>
|
|
{{ template "footer" . }}
|