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
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<div class="bottom-space center">
|
|
<a id="btnAddTeam" class="pure-button pure-button-success" href="/admin/teams/new"><i class="fa fa-plus"></i> Add Team</a>
|
|
</div>
|
|
{{ if not .TemplateData.Teams }}
|
|
<div>No teams have been created</div>
|
|
{{ else }}
|
|
<table id="teams-table" class="sortable pure-table pure-table-bordered center">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Key</th>
|
|
<th>Members</th>
|
|
<th>Game</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range $i, $v := .TemplateData.Teams }}
|
|
<tr>
|
|
<td>{{ $v.Name }}</td>
|
|
<td>{{ $v.UUID }}</td>
|
|
<td>{{ len $v.Members }}</td>
|
|
<td>{{ $v.Game.Name }}</td>
|
|
<td>
|
|
<a href="/admin/teams/{{ $v.UUID }}/edit" class="pure-button pure-button-plain"><i class="fa fa-pencil"></i></a>
|
|
<a href="/admin/teams/{{ $v.UUID }}/delete" class="pure-button pure-button-plain"><i class="fa fa-trash"></i></a>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{ end }}
|