summaryrefslogtreecommitdiffstats
path: root/dhcp-home-html.lsp
blob: 1591f764513bcfa85926622127a71ee8f8634d4e (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
<% local view, viewlibrary, page_info, session = ... %>
<% require("viewfunctions") %>

<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("status")
end %>

<H1>Global Settings</H1>

<DL>
<dt>Edit global settings</dt>
<dd><form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/settings" %>" method="POST">
<input type=submit value="Edit" class="submit">
</form></dd>
</DL>

<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("listsubnets")
end %>

<% --[[if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("listhosts")
end --]] %>

<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("startstop")
end %>