mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
24 lines
432 B
HTML
24 lines
432 B
HTML
<% if (state) { %>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Score</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% _.each(players(), function(player) { %>
|
|
<tr>
|
|
<td><%= player.name %></td>
|
|
<td><%= player.score %></td>
|
|
</tr>
|
|
<% }); %>
|
|
</tbody>
|
|
</table>
|
|
<% } else { %>
|
|
<tr>
|
|
<td>Server not online</td>
|
|
<td> </td>
|
|
</tr>
|
|
<% } %>
|