arma-server-web-admin/public/js/tpl/servers/list_item.html
2017-10-01 03:44:58 +02:00

26 lines
710 B
HTML

<td>
<% if (typeof(pid) != "undefined" && pid) { %>
<% if (state) { %>
<span class="label label-success">Online</span>
<% } else { %>
<span class="label label-info">Launching</span>
<% } %>
<% } else { %>
<span class="label label-default">Offline</span>
<% } %>
</td>
<td><%-port%></td>
<td style="width: 100%;">
<a href='#servers/<%-id%>'><%-title%></a>
</td>
<td>
<button type="button" class="btn btn-success btn-xs clone pull-right">
<span class="glyphicon glyphicon-plus-sign"></span> Clone
</button>
</td>
<td>
<button type="button" class="btn btn-danger btn-xs delete pull-right">
<span class="glyphicon glyphicon-trash"></span> Delete
</button>
</td>