2022-05-22 12:08:02 +00:00
|
|
|
{{ define "title" }}CAcert Board Decisions{{ end }}
|
2022-05-09 19:09:24 +00:00
|
|
|
|
|
|
|
{{ define "main" }}
|
2022-05-21 17:18:17 +00:00
|
|
|
{{ $page := . }}
|
2022-05-22 12:08:02 +00:00
|
|
|
{{ $voter := .Voter }}
|
2022-05-21 17:18:17 +00:00
|
|
|
{{ if .Motions }}
|
|
|
|
<div class="ui labeled icon menu">
|
|
|
|
{{ template "pagination" $page }}
|
|
|
|
</div>
|
|
|
|
{{ range .Motions }}
|
|
|
|
<div class="ui raised segment">
|
|
|
|
{{ template "motion_display" . }}
|
|
|
|
{{ if $voter }}{{ template "motion_actions" . }}{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
<div class="ui labeled icon menu">
|
|
|
|
{{ template "pagination" $page }}
|
|
|
|
</div>
|
|
|
|
{{ else }}
|
|
|
|
<div class="ui basic segment">
|
|
|
|
<div class="ui icon message">
|
|
|
|
<i class="inbox icon"></i>
|
|
|
|
<div class="content">
|
|
|
|
<div class="header">No motions available</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-09 19:09:24 +00:00
|
|
|
<p>Nothing to see yet.</p>
|
|
|
|
{{ end }}
|
2022-05-21 17:18:17 +00:00
|
|
|
{{ end }}
|