Jan Dittberner
0ad88fe5f4
- add httprouter for parameterized routing - improve styling - add routes and handlers - implement motion detail handler
30 lines
741 B
HTML
30 lines
741 B
HTML
{{ define "title" }}CAcert Board Decisions{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ $page := . }}
|
|
{{ $voter := .Voter }}
|
|
{{ 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>
|
|
<p>Nothing to see yet.</p>
|
|
{{ end }}
|
|
{{ end }}
|