arma-server-web-admin/public/js/tpl/servers/list_item.html

20 lines
533 B
HTML
Raw Normal View History

2014-07-26 09:07:55 +00:00
<td>
<% if (typeof(pid) != "undefined" && pid) { %>
2014-11-09 18:22:03 +00:00
<% if (state) { %>
<span class="label label-success">Online</span>
<% } else { %>
<span class="label label-info">Launching</span>
<% } %>
2014-07-26 09:07:55 +00:00
<% } else { %>
<span class="label label-default">Offline</span>
<% } %>
</td>
2014-07-26 09:04:36 +00:00
<td style="width: 100%;">
2014-04-13 17:10:40 +00:00
<a href='#servers/<%-id%>'><%-title%></a>
2014-07-26 09:04:36 +00:00
</td>
<td>
<button type="button" class="btn btn-danger btn-xs delete pull-right">
2014-07-26 09:04:36 +00:00
<span class="glyphicon glyphicon-trash"></span> Delete
</button>
2014-04-13 17:10:40 +00:00
</td>