ln.skyspot/www/dhcp/serverInterfaces.html

29 lines
802 B
HTML
Raw Normal View History

2019-04-24 12:55:33 +02:00
<%frame "frame.html"%>
<h2>Konfigurierte Schnittstellen</h2>
<div>
<table id="serverInterfaces"></table>
</div>
<script type="text/javascript">
$("#serverInterfaces").DataTable({
columns: [
2019-04-25 00:30:32 +02:00
{ title: "Bezeichnung", data: "Name", render: function(d,t,r){ return `<a href="javascript:editDHCPServerInterface('${d}');">${d}</a>`; } },
2019-04-24 12:55:33 +02:00
{ title: "Interface IP", data: "InterfaceAddress" },
2019-04-25 00:30:32 +02:00
{ title: "Pool", data: "Pool.Name", render: function(d,t,r){ return `<a href="javascript:editIPPool('${d}');">${d}</a>`; } },
2019-04-24 12:55:33 +02:00
],
columnDefs: [
],
select: "single",
ajax: {
url: "/DHCP/collections/DHCPServerInterface",
dataSrc: ''
},
serverSide: false,
})
</script>