mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
55 lines
1.8 KiB
<link href="/inc/table.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" charset="utf8" src="/inc/dataTables.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#scan_history').on( 'page.dt' )
|
|
.DataTable( {
|
|
"order": [[ "4", "desc" ]],
|
|
"pageLength": 25,
|
|
"columnDefs": [
|
|
{
|
|
"searchable": false,
|
|
"orderable": false,
|
|
}
|
|
],
|
|
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
|
|
} );
|
|
} );
|
|
</script>
|
|
<table class="overview hover order-column display compact" id="scan_history">
|
|
<thead>
|
|
<tr class="overviewHead">
|
|
<th class="padding10" style="width: 10%; padding-left: 10px;">Status</th>
|
|
<th>Host</th>
|
|
<th>Port</th>
|
|
<th>Possible service name</th>
|
|
<th>Date</th>
|
|
<th>Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if port_scanner_settings != '' %}
|
|
{% for t in port_scanner_settings %}
|
|
{% set date_time = t.date|string %}
|
|
<tr>
|
|
<td class="padding10" style="width: 10%; padding: 7px 7px 7px 10px;">
|
|
{% if t.status == 'opened' %}
|
|
{% set color = '#5ad05a' %}
|
|
{% else %}
|
|
{% set color = '#be2424' %}
|
|
{% endif %}
|
|
<span style="color: {{color}};"><b>{{t.status |upper}}</b></span>
|
|
</td>
|
|
<td>{{t.serv}}</td>
|
|
<td>{{t.port}}</td>
|
|
<td>{{t.service_name}}</td>
|
|
<td>{{date_time.split(' ')[0]}}
|
|
</td>
|
|
<td>{{date_time.split(' ')[1]}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% else %}
|
|
<span class="alert alert-warning" style="margin-bottom: 0px;">Table is empty</span>
|
|
{% endif %}
|
|
</tbody>
|
|
</table> |