Files
librenms-librenms/includes/html/pages/customers.inc.php

36 lines
1.0 KiB
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
$pagetitle[] = 'Customers';
$no_refresh = true;
2015-08-11 10:38:25 +00:00
?>
<div class="table-responsive">
<table id="customers" class="table table-hover table-condensed">
2015-08-11 10:38:25 +00:00
<thead>
<tr>
<th data-column-id="port_descr_descr" data-order="asc" data-formatter="customer">Customer</th>
<th data-column-id="hostname">Device</th>
2015-08-11 10:38:25 +00:00
<th data-column-id="ifDescr">Interface</th>
<th data-column-id="port_descr_speed">Speed</th>
<th data-column-id="port_descr_circuit">Circuit</th>
<th data-column-id="port_descr_notes">Notes</th>
</tr>
</thead>
</table>
</div>
<script>
var grid = $("#customers").bootgrid({
ajax: true,
rowCount: [50, 100, 250, -1],
url: "<?php echo url('/ajax/table/customers'); ?>",
formatters: {
customer: function (column, row) {
return '<strong>' + row[column.id] + '</strong>';
}
}
2015-08-11 10:38:25 +00:00
});
</script>