mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
Merge pull request #198 from Dahlgren/feature/logs-dates
Show logs created and modified dates in browser locale
This commit is contained in:
commit
cf5bfd4cf0
@ -2,6 +2,8 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th width="100%">Filename</th>
|
<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>Size</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
@ -6,6 +6,12 @@
|
|||||||
<%-name%>
|
<%-name%>
|
||||||
<% } %>
|
<% } %>
|
||||||
</td>
|
</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;">
|
<td style="text-align: right; white-space: nowrap;">
|
||||||
<%-formattedSize%>
|
<%-formattedSize%>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user