mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
24 lines
614 B
HTML
24 lines
614 B
HTML
<td>
|
|
<% if (size < 100 * 1024 * 1024) { %>
|
|
<!-- Only show files under 100 MB -->
|
|
<a href='/api/logs/<%-name%>/view' target=_blank><%-name%></a>
|
|
<% } else { %>
|
|
<%-name%>
|
|
<% } %>
|
|
</td>
|
|
<td style="text-align: right; white-space: nowrap;">
|
|
<%-formattedSize%>
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-primary btn-xs" href="/api/logs/<%-name%>/download">
|
|
<span class="glyphicon glyphicon-download"></span>
|
|
Download
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-danger btn-xs destroy ladda-button pull-right" data-style="expand-left">
|
|
<span class="glyphicon glyphicon-trash"></span>
|
|
Delete
|
|
</a>
|
|
</td>
|