cacert-boardvoting/boardvoting/templates/withdraw_motion_form.html

23 lines
686 B
HTML
Raw Normal View History

{{ template "header.html" . }}
2017-04-30 00:37:29 +00:00
<div class="column">
<div class="ui basic segment">
<div class="ui floated right secondary menu">
<a href="/motions/" class="item" title="Show all votes">Back to motions</a>
</div>
</div>
</div>
{{ with .Decision }}
<div class="column">
<div class="ui raised segment">
2018-03-31 08:50:06 +00:00
{{ template "motion_fragment" . }}
2017-04-30 00:37:29 +00:00
</div>
</div>
{{ end }}
2017-04-19 19:35:08 +00:00
<form action="/motions/{{ .Decision.Tag }}/withdraw" method="post">
2018-03-31 08:50:06 +00:00
{{ csrfField }}
2017-04-30 00:37:29 +00:00
<div class="ui form">
<button class="ui primary left labeled icon button" type="submit"><i class="trash icon"></i> Withdraw</button>
</div>
2017-04-19 19:35:08 +00:00
</form>
{{ template "footer.html" . }}