diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:21:02 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:21:02 +0000 |
commit | fac49f7ab11ad399ac380459ef183f92478b03b4 (patch) | |
tree | 1758ecdfcdd7f06c793933683a4981e39b21548f /interfaces-status-html.lsp | |
parent | badb1b3f5477611441c2c3e91ae9eb9263120bae (diff) | |
download | acf-alpine-baselayout-fac49f7ab11ad399ac380459ef183f92478b03b4.tar.bz2 acf-alpine-baselayout-fac49f7ab11ad399ac380459ef183f92478b03b4.tar.xz |
Change htmlviewfunctions.displayheader to .displaysectionstart and added .displaysectionend function
Diffstat (limited to 'interfaces-status-html.lsp')
-rw-r--r-- | interfaces-status-html.lsp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/interfaces-status-html.lsp b/interfaces-status-html.lsp index 18ce7f2..81fc5aa 100644 --- a/interfaces-status-html.lsp +++ b/interfaces-status-html.lsp @@ -2,11 +2,12 @@ <% htmlviewfunctions = require("htmlviewfunctions") %> <% -htmlviewfunctions.displayheader(view, page_info) +local header_level = htmlviewfunctions.displaysectionstart(view, page_info) htmlviewfunctions.displayitem(view.value.filename) htmlviewfunctions.displayitem(view.value.ipaddr) htmlviewfunctions.displayitem(view.value.iproute) if view.value.iptunnel.value ~= "" then htmlviewfunctions.displayitem(view.value.iptunnel) end +htmlviewfunctions.displaysectionend(header_level) %> |