ln.skyspot/www/dhcp/IPPool.html

23 lines
595 B
HTML

<%frame "frame.html"%>
<h2>Address Pool (<%=__path__[0]%>)</h2>
<div>
<fieldset>
<label>Bezeichnung</label>
<input type="text" id="Name">
<label>Erste IP</label>
<input type="text" id="FirstIP">
<label>Letzte IP</label>
<input type="text" id="LastIP">
<label>Standard Gültigkeit</label>
<input type="text" id="DefaultLeaseTime">
</fieldset>
</div>
<script type="text/javascript">
skyapi().getJson( "/DHCP/collections/IPPool/<%=__path__[0]%>", function(ippool){
PopulateForm( ippool );
} );
</script>