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

31 lines
937 B
HTML
Raw Normal View History

2015-07-22 18:16:30 +00:00
<td>
2014-04-05 19:36:34 +00:00
<a href='#mods/<%-name%>'><%-name%></a>
<% if (playWithSix) { %>
<img src="/images/playwithsix.png" height="20px" width="20px" />
<% } %>
2014-07-26 09:04:36 +00:00
</td>
<td>
2015-04-17 18:06:48 +00:00
<% if (progress) { %>
2015-04-07 06:12:42 +00:00
<div class="progress" style="margin-bottom: 0;">
<div class="progress-bar" role="progressbar" aria-valuenow="<%-progress%>" aria-valuemin="0" aria-valuemax="100" style="width: <%-progress%>%; min-width: 2em;">
<%-progress%>%
</div>
</div>
2015-07-22 18:16:30 +00:00
<% } else { %>
<a class="btn btn-danger btn-xs destroy ladda-button pull-right" data-style="expand-left">
2015-07-22 18:16:30 +00:00
<span class="glyphicon glyphicon-trash"></span>
Delete
</a>
2015-07-22 18:16:30 +00:00
<% if (outdated) { %>
<a class="btn btn-primary btn-xs update ladda-button pull-right" data-style="expand-left" style="margin-right: 8px">
<span class="glyphicon glyphicon-save"></span>
Update
</a>
<% } %>
2015-02-04 23:42:18 +00:00
<div class="clearfix"></div>
<% } %>
2014-04-05 19:36:34 +00:00
</td>