cacert-boardvoting/templates/motion.html

19 lines
651 B
HTML
Raw Normal View History

{{ template "header" . }}
{{ $voter := .Voter }}
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">All votes</a>
{{ if $voter }}<a href="/motions/?unvoted=1" class="item" title="Show my outstanding votes">My outstanding votes</a>{{ end }}
</div>
</div>
</div>
{{ with .Decision }}
<div class="column">
<div class="ui raised segment">
{{ template "motion_fragment" . }}
{{ if $voter }}{{ template "motion_actions" . }}{{ end }}
2017-04-30 00:37:29 +00:00
</div>
</div>
{{ end}}
{{ template "footer" . }}