diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-08-09 14:37:15 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-08-09 14:37:15 +0000 |
commit | e45a01ccebf7c9a756e3d27e3fe6abbeb8797a36 (patch) | |
tree | 338fd422d828a395b9070fb7201e89e5895c07cd /dhcp-editsubnet-html.lsp | |
parent | c4de6d7e2aea4520dbfb9070ecb1d9f01185a092 (diff) | |
download | acf-dhcp-e45a01ccebf7c9a756e3d27e3fe6abbeb8797a36.tar.bz2 acf-dhcp-e45a01ccebf7c9a756e3d27e3fe6abbeb8797a36.tar.xz |
Rewrite of dhcp to modify existing config file rather than just generate a new one. Still need to add support for hosts, currently only supports globals and subnets.
git-svn-id: svn://svn.alpinelinux.org/acf/dhcp/trunk@1373 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'dhcp-editsubnet-html.lsp')
-rw-r--r-- | dhcp-editsubnet-html.lsp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dhcp-editsubnet-html.lsp b/dhcp-editsubnet-html.lsp new file mode 100644 index 0000000..25b3882 --- /dev/null +++ b/dhcp-editsubnet-html.lsp @@ -0,0 +1,13 @@ +<% local form, viewlibrary, page_info = ... +require("viewfunctions") +%> + +<H1><%= form.label %></H1> +<% + form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action + if page_info.action == "editsubnet" then + form.value.subnet.contenteditable = false + end + local order = {"subnet", "netmask", "leaserangestart", "leaserangeend", "unknownclients", "domainname", "domainnameservers", "routers", "defleasetime", "maxleasetime"} + displayform(form, order) +%> |