2017-06-30 19:35:36 +00:00
|
|
|
{{ if not .TemplateData.Teams }}
|
2017-06-22 15:34:57 +00:00
|
|
|
<div>No games have been created</div>
|
|
|
|
{{ else }}
|
|
|
|
<table id="games-table" class="sortable pure-table pure-table-bordered center">
|
2017-06-21 20:07:17 +00:00
|
|
|
<thead>
|
2017-06-22 15:34:57 +00:00
|
|
|
<tr>
|
|
|
|
<th>Game Name</th>
|
|
|
|
<th>Team Name</th>
|
|
|
|
<th>Screenshots</th>
|
|
|
|
</tr>
|
2017-06-21 20:07:17 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-06-30 19:35:36 +00:00
|
|
|
{{ range $i, $v := .TemplateData.Teams }}
|
2017-06-22 15:34:57 +00:00
|
|
|
<tr>
|
2017-06-30 19:35:36 +00:00
|
|
|
<td>{{ $v.Game.Name }}</td>
|
2017-06-22 15:34:57 +00:00
|
|
|
<td>{{ $v.Name }}</td>
|
2017-06-30 19:35:36 +00:00
|
|
|
<td>{{ len $v.Game.Screenshots }}</td>
|
2017-06-22 15:34:57 +00:00
|
|
|
</tr>
|
|
|
|
{{ end }}
|
2017-06-21 20:07:17 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-06-22 15:34:57 +00:00
|
|
|
{{ end }}
|