Brian Buller
ba35073d95
* Use 'https://github.com/mjibson/esc' for embedded assets * Pull database name out of siteData object * Load site config from database, if available * Allow customizing site config from command line arguments * Clean up some templates * Update Readme (it still needs a lot of updating) * Started work on vote accumulation/management
15 lines
836 B
HTML
15 lines
836 B
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>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>
|