relocate repo files so ND2 is the only code
This commit is contained in:
55
share/views/ajax/admintask/performance.tt
Normal file
55
share/views/ajax/admintask/performance.tt
Normal file
@@ -0,0 +1,55 @@
|
||||
[% IF results.count == 0 %]
|
||||
<div class="span3 alert alert-info">The aren't enough jobs to report.</div>
|
||||
[% ELSE %]
|
||||
<table id="app-data-table" class="table table-bordered table-condensed table-hover" width="100%" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="nd_center-cell">Action</th>
|
||||
<th class="nd_center-cell">Number of Devices</th>
|
||||
<th class="nd_center-cell">Queued At</th>
|
||||
<th class="nd_center-cell">Started</th>
|
||||
<th class="nd_center-cell">Finished</th>
|
||||
<th class="nd_center-cell">Time Elapsed</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</tbody>
|
||||
[% WHILE (row = results.next) %]
|
||||
<tr
|
||||
[% IF NOT mac AND row.action == 'macsuck' %]
|
||||
class="info"
|
||||
[% SET mac = 1 %]
|
||||
[% ELSIF NOT arp AND row.action == 'arpnip' %]
|
||||
class="info"
|
||||
[% SET arp = 1 %]
|
||||
[% ELSIF NOT dis AND row.action == 'discover' %]
|
||||
class="info"
|
||||
[% SET dis = 1 %]
|
||||
[% ELSIF NOT nbt AND row.action == 'nbtstat' %]
|
||||
class="info"
|
||||
[% SET nbt = 1 %]
|
||||
[% END %]
|
||||
>
|
||||
<td class="nd_center-cell">[% row.action.ucfirst | html_entity %]</td>
|
||||
<td class="nd_center-cell">[% row.number | html_entity %]</td>
|
||||
<td class="nd_center-cell">[% row.entered_stamp | html_entity %]</td>
|
||||
<td class="nd_center-cell">[% row.start | html_entity %]</td>
|
||||
<td class="nd_center-cell">[% row.end | html_entity %]</td>
|
||||
<td class="nd_center-cell">[% row.elapsed | html_entity %]</td>
|
||||
</tr>
|
||||
[% END %]
|
||||
</tbody>
|
||||
</table>
|
||||
[% END %]
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#app-data-table').dataTable({
|
||||
"paging": false,
|
||||
"searching": false,
|
||||
"info": false,
|
||||
"order": [[ 2, 'desc' ], [ 5, 'desc' ]],
|
||||
"pageLength": 50
|
||||
} );
|
||||
} );
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user