package page_vote import () type TemplateVars struct { Position int Name string Title string Sentence string MinChoices int MaxChoices int VoteCount int VoteOpen bool VotedAlready bool VoteError string VoterPublicId string VoterFullname string Answers []TemplateAnswer TotalVoteCount int } type TemplateAnswer struct { Name string Sentence string VoteCount int } const TEMPLATE_CHOICE_STR = ` Vote Électrolab - {{.Title}}

Vote nº{{.Position}} - {{.Title}}

{{.Sentence}}

{{ if .VoteError }}

Votre vote n'a pas pu être pris en compte!
Erreur lors de la procédure: {{.VoteError}}.

{{ end}} {{ if .VotedAlready }}

Votre vote a été enregistré. Vous pourrez rafraichir la page au moment de la cloture pour voir les résultats.

{{ else }}
{{ if eq 1 .MinChoices .MaxChoices }} {{ range .Answers }} {{ end }} {{ else }} {{ range .Answers }} {{ end }} {{ end }} {{ if .VoteOpen }} {{ else }}

Le vote n'est pas encore ouvert. Vous pourrez rafraichir la page au moment de l'ouverture pour voter.

{{ end }}
{{ end }}

Empreinte de l'exécutable: {{.ExeFingerprint}}

Version du commit: {{.CodeCommit}}

Date du commit: {{.CodeDate}}

`