summaryrefslogtreecommitdiffstats
path: root/tcpproxy-smtpstatus-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-02-03 21:55:41 +0000
committerTed Trask <ttrask01@yahoo.com>2014-02-03 21:55:41 +0000
commit02f08e3420245cb727783f5abe460d336f135459 (patch)
tree1630a5c11156182687f89627943aafd33ea02dc2 /tcpproxy-smtpstatus-html.lsp
parent3994357e9ab748f5fbf6cbca682e5e3ce3be8001 (diff)
downloadacf-tcpproxy-02f08e3420245cb727783f5abe460d336f135459.tar.bz2
acf-tcpproxy-02f08e3420245cb727783f5abe460d336f135459.tar.xz
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'tcpproxy-smtpstatus-html.lsp')
-rw-r--r--tcpproxy-smtpstatus-html.lsp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tcpproxy-smtpstatus-html.lsp b/tcpproxy-smtpstatus-html.lsp
index d5f4a46..7edf5e0 100644
--- a/tcpproxy-smtpstatus-html.lsp
+++ b/tcpproxy-smtpstatus-html.lsp
@@ -6,17 +6,17 @@ html = require("acf.html")
<% htmlviewfunctions.displaycommandresults({"editsmtpentry", "delsmtpentry", "editsmtpfile", "delsmtpfile"}, session) %>
<% htmlviewfunctions.displaycommandresults({"createsmtpfile"}, session, true) %>
-<H1>SMTP Proxy Status</H1>
-<DL>
+<h1>SMTP Proxy Status</h1>
<% htmlviewfunctions.displayitem(view.value.version)
if view.value.version and view.value.version.errtxt and viewlibrary.check_permission("apk-tools/apk/install") then
%>
- <DT>Install package</DT>
- <DD><form action="<%= html.html_escape(page_info.script .. "/apk-tools/apk/install") %>" method="POST">
+ <div class='item'><p class='left'>Install package</p>
+ <div class='right'>
+ <form action="<%= html.html_escape(page_info.script .. "/apk-tools/apk/install") %>" method="post">
<input type='hidden' name='package' value='<%= html.html_escape(view.value.version.name) %>'>
- <input class='submit' type='submit' name='submit' value='Install'></form></DD>
+ <input class='submit' type='submit' name='submit' value='Install'></form>
+ </div></div><!-- end .item -->
<% end %>
-</DL>
<% if viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("listsmtpentries")