60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
<table id="data-table" class="table table-striped table-bordered" width="100%" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Node</th>
|
|
<th>DNS</th>
|
|
<th>Last Used</th>
|
|
<th>First Discovered</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
var table = $('#data-table').dataTable({
|
|
"processing": true,
|
|
"stateSave": true,
|
|
"pageLength": [% settings.table_pagesize %],
|
|
"language": {
|
|
"search": 'Filter records: '
|
|
},
|
|
"deferRender": true,
|
|
"data": [% results %],
|
|
"columns": [
|
|
{
|
|
"data": 'ip',
|
|
"render": function(data, type, row, meta) {
|
|
var cell_str = he.encode(data);
|
|
if (type == 'display') {
|
|
if (row.time_last && row.node) {
|
|
cell_str = '<a href="[% search_node %]&q=' + encodeURIComponent(data)
|
|
+ (row.active ? '' : '&archived=on') + '">' + he.encode(data)
|
|
+ (row.active ? '' : ' <i class="icon-book text-warning"></i> ') + '</a>';
|
|
}
|
|
else if (row.time_last) {
|
|
cell_str = '<a href="[% search_device %]&q=' + encodeURIComponent(data) + '">' + he.encode(data) + '</a>';
|
|
}
|
|
}
|
|
return cell_str;
|
|
}
|
|
}, {
|
|
"data": 'dns',
|
|
"render": function(data, type, row, meta) {
|
|
return he.encode(data || '');
|
|
}
|
|
}, {
|
|
"data": 'age',
|
|
"render": function(data, type, row, meta) {
|
|
return he.encode(data || 'Never');
|
|
}
|
|
}, {
|
|
"data": 'time_first',
|
|
"render": function(data, type, row, meta) {
|
|
return he.encode(data || 'Never');
|
|
}
|
|
}
|
|
]
|
|
});
|
|
});
|
|
</script>
|