2018-03-29 19:26:12 +00:00
|
|
|
{{ template "header.html" . }}
|
2017-04-17 14:24:37 +00:00
|
|
|
{{ $voter := .Voter }}
|
2019-08-02 23:39:55 +00:00
|
|
|
<div class="ui basic segment">
|
|
|
|
<div class="ui secondary pointing 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>
|
|
|
|
<div class="right item">
|
|
|
|
<a class="ui primary button" href="/newmotion/">New motion</a>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2017-04-30 00:37:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ with .Decision }}
|
|
|
|
<div class="ui raised segment">
|
|
|
|
{{ template "motion_fragment" . }}
|
2017-04-17 14:24:37 +00:00
|
|
|
{{ if $voter }}{{ template "motion_actions" . }}{{ end }}
|
2017-04-30 00:37:29 +00:00
|
|
|
</div>
|
|
|
|
{{ end}}
|
2018-03-29 19:26:12 +00:00
|
|
|
{{ template "footer.html" . }}
|