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>
|
2018-06-18 13:49:15 +00:00
|
|
|
<th class="only-large">Team Name</th>
|
2017-06-22 15:34:57 +00:00
|
|
|
<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>
|
2018-06-18 13:49:15 +00:00
|
|
|
<td>{{ $v.Game.Name }}<p class="only-small">by<br />{{ $v.Name }}</p></td>
|
|
|
|
<td class="only-large">{{ $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 }}
|