web/templates/world_list.tmpl

29 lines
707 B
Cheetah

{{template "_header.tmpl" .Common}}
<div class="box">
<h1>Worlds</h1>
{{if .Worlds}}
<table>
<tr>
<th>Name</th>
<th>Type</th>
<th>Players Online</th>
<th>Status</th>
</tr>
{{range .Worlds}}
<tr>
<td><a href="/world?name={{.Name}}">{{.Name}}</a></td>
<td>{{.Type}}</td>
<td>{{.NumPlayers}}</td>
{{if gt .LastStartup .LastShutdown}}
<td style="color: #1A1;">Online</td>
{{else}}
<td style="color: #A11;">Offline</td>
{{end}}
</tr>
{{end}}
</table>
{{else}}
<p>Something went wrong when loading world data. Wait a few moments and try again.</p>
{{end}}
</div>
{{template "_footer.tmpl" .Common}}