cacert-boardvoting/boardvoting/templates/withdraw_motion_form.html

17 lines
542 B
HTML
Raw Normal View History

{{ template "header.html" . }}
{{ template "return_header" . }}
2017-04-30 00:37:29 +00:00
{{ with .Decision }}
<div class="ui raised segment">
{{ template "motion_fragment" . }}
2017-04-30 00:37:29 +00:00
</div>
{{ end }}
<div class="ui basic segment">
<form action="/motions/{{ .Decision.Tag }}/withdraw" method="post">
{{ csrfField }}
<div class="ui form">
<button class="ui primary left labeled icon button" type="submit"><i class="trash icon"></i> Withdraw
</button>
</div>
</form>
</div>
{{ template "footer.html" . }}