arma-server-web-admin/public/js/tpl/mods/list_item.html
2015-04-17 19:41:55 +02:00

23 lines
750 B
HTML

<td style="width: 100%;">
<a href='#mods/<%-name%>'><%-name%></a>
<% if (playWithSix) { %>
<img src="/images/playwithsix.png" height="20px" width="20px" />
<% } %>
</td>
<td>
<% if (typeof progress !== 'undefined') { %>
<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>
<% } else if (outdated) { %>
<a class="btn btn-primary btn-xs update ladda-button pull-right" data-style="expand-left">
<span class="glyphicon glyphicon-save"></span>
Update
</a>
<div class="clearfix"></div>
<% } %>
</td>