Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ func main() {
"IsOpen": poll.Open,
"IsHidden": poll.Hidden,
"CanModify": canModify,
"CanVote": canVote(claims.UserInfo, *poll, poll.AllowedUsers),
"Username": claims.UserInfo.Username,
"FullName": claims.UserInfo.FullName,
"Gatekeep": poll.Gatekeep,
Expand Down
30 changes: 30 additions & 0 deletions templates/result.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
media="screen"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<style>
.container div.d-none {
display: none!important;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
Expand All @@ -25,6 +31,29 @@
</nav>

<div class="container main p-5">
{{ if eq .CanVote 9 }}
<div id="already-voted" class="alert alert-info alert-dismissible d-flex flex-row align-items-center" role="alert">
<h5 class="m-0">You have already voted in this poll.</h5>
<button class="close m-0" style="cursor: pointer;" onclick="document.getElementById('already-voted').classList.add('d-none');">
<span class="align-items-center">&times;</span>
</button>
</div>
{{ else if eq .CanVote 1 }}
<div id="db-error" class="alert alert-danger alert-dismissible d-flex flex-row align-items-center" role="alert">
<h5 class="m-0">There was an error checking your voting eligibility. Try refreshing the page or contacting the RTPs if the issue persists.</h5>
<button class="close m-0" style="cursor: pointer;" onclick="document.getElementById('db-error').classList.add('d-none');">
<span class="align-items-center">&times;</span>
</button>
</div>
{{ else if gt .CanVote 1 }}
<div id="cannot-vote" class="alert alert-warning alert-dismissible d-flex flex-row align-items-center" role="alert">
<h5 class="m-0">You are not eligible to vote in this poll. This is likely because you are not an Active Member, or because you did not meet the gatekeep requirements by the time the poll opened.</h5>
<button class="close m-0 ml-3" style="cursor: pointer;" onclick="document.getElementById('cannot-vote').classList.add('d-none');">
<span class="align-items-center">&times;</span>
</button>
</div>
{{ end }}

<h2 style="white-space: normal; word-wrap: break-word;">{{ .ShortDescription }}</h2>
{{ if .LongDescription }}
<h4>{{ .LongDescription | MakeLinks }}</h4>
Expand All @@ -38,6 +67,7 @@
<h4>Results will be available once the poll closes</h4>
</div>
{{ else }}

{{/* Displays information about required quorum and number of voters */}}
<div id="quorum-info">
<h5>Number of Eligible Voters: {{ len .EligibleVoters }}</h5>
Expand Down