cacert-boardvoting/ui/html/pages/motion.html
Jan Dittberner 1695ce0168 Implement small improvements
- fix golangci-lint warnings
- start setup for user management
- nicer formatting of user login information
2022-05-26 16:47:57 +02:00

11 lines
No EOL
274 B
HTML

{{ define "title" }}Motion {{ .Motion.Tag }}{{ end }}
{{ define "main" }}
{{ $voter := .User }}
{{ with .Motion }}
<div class="ui raised segment">
{{ template "motion_display" . }}
{{ if $voter }}{{ template "motion_actions" . }}{{ end }}
</div>
{{ end }}
{{ end }}