mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
Show logs created and modified dates in browser locale
This commit is contained in:
parent
bed96bd389
commit
4dad7ea218
@ -2,6 +2,8 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="100%">Filename</th>
|
||||
<th class="hidden-xs hidden-sm">Created</th>
|
||||
<th class="hidden-xs hidden-sm">Modified</th>
|
||||
<th>Size</th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
|
@ -6,6 +6,12 @@
|
||||
<%-name%>
|
||||
<% } %>
|
||||
</td>
|
||||
<td class="hidden-xs hidden-sm" style="text-align: right; white-space: nowrap;">
|
||||
<%- new Date(created).toLocaleString() %>
|
||||
</td>
|
||||
<td class="hidden-xs hidden-sm" style="text-align: right; white-space: nowrap;">
|
||||
<%- new Date(modified).toLocaleString() %>
|
||||
</td>
|
||||
<td style="text-align: right; white-space: nowrap;">
|
||||
<%-formattedSize%>
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user