2022-05-09 19:09:24 +00:00
|
|
|
{{ define "base" }}
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{ template "title" . }} - CAcert Board Voting System</title>
|
2022-05-22 12:08:02 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/lato-fonts.css">
|
2022-05-09 19:09:24 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/semantic.min.css">
|
|
|
|
<link rel="icon" href="/static/images/favicon.ico">
|
|
|
|
</head>
|
|
|
|
<body id="cacert-board-voting">
|
|
|
|
<header class="pusher">
|
|
|
|
<div class="ui vertical masthead center aligned segment">
|
|
|
|
<div class="ui left secondary container">
|
|
|
|
<img src="/static/images/CAcert-logo-colour.svg" alt="CAcert" height="40rem"/>
|
|
|
|
</div>
|
|
|
|
<div class="ui text container">
|
|
|
|
<h1 class="ui header">
|
|
|
|
{{ template "title" . }}
|
|
|
|
{{ if .Voter }}
|
|
|
|
<span class="ui left pointing label">Authenticated as {{ .Voter.Name }} <{{ .Voter.Reminder }}>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{ template "nav" . }}
|
|
|
|
<main class="ui container">
|
|
|
|
{{ with .Flashes }}
|
|
|
|
<div class="basic segment">
|
|
|
|
<div class="ui info message">
|
|
|
|
<i class="close icon"></i>
|
|
|
|
<div class="ui list">
|
|
|
|
{{ range . }}
|
|
|
|
<div class="ui item">{{ . }}</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2022-05-22 12:08:02 +00:00
|
|
|
{{ $voter := .Voter }}
|
|
|
|
<div class="ui basic segment">
|
|
|
|
<div class="ui secondary pointing menu">
|
|
|
|
<a href="/motions/" class="{{ if not .Params.Flags.Unvoted }}active {{ end }}item" title="Show all motions">All
|
|
|
|
motions</a>
|
|
|
|
{{ if $voter }}
|
|
|
|
<a href="/motions/?unvoted=1" class="{{ if .Params.Flags.Unvoted }}active {{ end}}item"
|
|
|
|
title="My unvoted motions">My unvoted motions</a>
|
|
|
|
<div class="right item">
|
|
|
|
<a class="ui primary button" href="/newmotion/">New motion</a>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-09 19:09:24 +00:00
|
|
|
{{ template "main" . }}
|
|
|
|
</main>
|
2022-05-22 12:08:02 +00:00
|
|
|
<footer class="ui vertical footer segment">
|
|
|
|
<div class="ui container">
|
|
|
|
<span class="ui small text">© 2017-2022 CAcert Inc.</span>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2022-05-09 19:09:24 +00:00
|
|
|
</body>
|
|
|
|
<script src="/static/jquery.min.js"></script>
|
|
|
|
<script src="/static/semantic.min.js"></script>
|
2022-05-22 09:02:37 +00:00
|
|
|
<script src="/static/handlers.js"></script>
|
2022-05-09 19:09:24 +00:00
|
|
|
</html>
|
|
|
|
{{ end }}
|