luci/modules/admin-full/luasrc/view/admin_network/lease_status.htm

70 lines
1.8 KiB
HTML
Raw Normal View History

2010-11-18 01:34:56 +00:00
<script type="text/javascript">//<![CDATA[
var stxhr = new XHR();
(function() {
var func = arguments.callee;
stxhr.get('<%=luci.dispatcher.build_url("admin", "network", "dhcplease_status")%>', null,
2010-11-15 14:41:30 +00:00
function(x, st)
{
var tb = document.getElementById('lease_status_table');
if (st && tb)
{
/* clear all rows */
while( tb.rows.length > 1 )
2010-11-18 01:34:56 +00:00
tb.deleteRow(1);
for( var i = 0; i < st.length; i++ )
{
var timestr;
if (st[i].expires <= 0)
{
timestr = '<em><%:expired%></em>';
}
else
{
timestr = String.format('%t', st[i].expires);
}
2010-11-18 01:34:56 +00:00
var tr = tb.insertRow(-1);
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
2010-11-18 01:34:56 +00:00
tr.insertCell(-1).innerHTML = st[i].hostname ? st[i].hostname : '?';
tr.insertCell(-1).innerHTML = st[i].ipaddr;
tr.insertCell(-1).innerHTML = st[i].macaddr;
tr.insertCell(-1).innerHTML = timestr;
}
if( tb.rows.length == 1 )
{
2010-11-18 01:34:56 +00:00
var tr = tb.insertRow(-1);
tr.className = 'cbi-section-table-row';
2010-11-18 01:34:56 +00:00
var td = tr.insertCell(-1);
td.colSpan = 4;
td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
}
}
2010-11-17 15:23:21 +00:00
window.setTimeout(func, 5000);
}
)
})();
2010-11-18 01:34:56 +00:00
//]]></script>
<fieldset class="cbi-section">
<legend><%:Active Leases%></legend>
<table class="cbi-section-table" id="lease_status_table">
<tr class="cbi-section-table-titles">
<th class="cbi-section-table-cell"><%:Hostname%></th>
<th class="cbi-section-table-cell"><%:IPv4-Address%></th>
<th class="cbi-section-table-cell"><%:MAC-Address%></th>
<th class="cbi-section-table-cell"><%:Leasetime remaining%></th>
</tr>
<tr class="cbi-section-table-row">
<td colspan="4"><em><br /><%:Collecting data...%></em></td>
</tr>
</table>
</fieldset>