summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-ahcp/luasrc/view/ahcp_status.htm
blob: abe8879a40a27f9cf9ac38635bed667c39265a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script type="text/javascript">//<![CDATA[
	XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "network", "ahcpd", "status")%>', null,
		function(x, st)
		{
			var tb = document.getElementById('ahcpd_status_table');
			var tx = document.getElementById('ahcpd_status_text');
			if (st && tb && tx)
			{
				/* clear all rows */
				while( tb.rows.length > 1 )
					tb.deleteRow(1);

				for( var i = 0; i < st.leases.length; i++ )
				{
					var tr = tb.insertRow(-1);
						tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);

					tr.insertCell(-1).innerHTML = st.leases[i].addr;
					tr.insertCell(-1).innerHTML = String.format('%t', st.leases[i].age);
				}

				if( tb.rows.length == 1 )
				{
					var tr = tb.insertRow(-1);
						tr.className = 'cbi-section-table-row';

					var td = tr.insertCell(-1);
						td.colSpan = 2;
						td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
				}

				if( st.uid == '00:00:00:00:00:00:00:00' )
					tx.innerHTML = 'The AHCP Service is not running.';
				else
					tx.innerHTML = String.format('The AHCP Service is running with ID %s.', st.uid);
			}
		}
	);
//]]></script>

<fieldset class="cbi-section">
	<legend><%:Active AHCP Leases%></legend>
	<p id="ahcpd_status_text"></p>
	<table class="cbi-section-table" id="ahcpd_status_table">
		<tr class="cbi-section-table-titles">
			<th class="cbi-section-table-cell"><%:Address%></th>
			<th class="cbi-section-table-cell"><%:Age%></th>
		</tr>
		<tr class="cbi-section-table-row">
			<td colspan="5"><em><br /><%:Collecting data...%></em></td>
		</tr>
	</table>
</fieldset>