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

35 lines
882 B
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
$pagetitle[] = 'Customers';
2015-08-11 10:38:25 +00:00
?>
<div class="table-responsive">
<table id="customers" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="port_descr_descr" data-order="asc">Customer</th>
<th data-column-id="device_id">Device</th>
<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,
post: function ()
{
return {
id: "customers",
};
},
url: "ajax_table.php"
2015-08-11 10:38:25 +00:00
});
</script>