Brian Buller
f2dde0c709
Also tweaked a few other things Kinda worked more on the client authentication stuff
32 lines
1.4 KiB
HTML
32 lines
1.4 KiB
HTML
<div class="content">
|
|
<div>
|
|
<h3>Public Mode</h3>
|
|
<button onclick="window.location.href='/admin/mode/0'" class="pure-button-toggle-first pure-button {{ if eq .PublicMode 0 }}pure-button-primary{{ end }}">Waiting</button>
|
|
<button onclick="window.location.href='/admin/mode/1'" class="pure-button-toggle-last pure-button {{ if eq .PublicMode 1 }}pure-button-primary{{ end }}">Voting</button>
|
|
</div>
|
|
<!--
|
|
<div>
|
|
<h3>Allowed Voting Terminals</h3>
|
|
<button onclick="window.location.href='/admin/authmode/0'" class="pure-button-toggle-first pure-button {{ if eq .AuthMode 0 }}pure-button-primary{{ end }}">Only Authenticated Clients</button>
|
|
<button onclick="window.location.href='/admin/authmode/1'" class="pure-button-toggle-last pure-button {{ if eq .AuthMode 1 }}pure-button-primary{{ end }}">Any Client Can Vote</button>
|
|
</div>
|
|
-->
|
|
{{ if eq .PublicMode 1 }}
|
|
<div>
|
|
<h3>Current Results</h3>
|
|
<ol>
|
|
{{ range $i, $v := .TemplateData }}
|
|
<li>{{ $v.Name }}</li>
|
|
{{ end }}
|
|
</ol>
|
|
</div>
|
|
{{ end }}
|
|
<div>
|
|
<h3>Admin Sections</h3>
|
|
<button class="pure-button" onclick="window.location.href='/admin/votes'">Votes</button>
|
|
<button class="pure-button" onclick="window.location.href='/admin/teams'">Teams</button>
|
|
<button class="pure-button" onclick="window.location.href='/admin/games'">Games</button>
|
|
<button class="pure-button" onclick="window.location.href='/admin/users'">Users</button>
|
|
</div>
|
|
</div>
|