diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:48:48 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:48:48 +0000 |
commit | e5f62555031d500d50405ba395e330223ac28e9f (patch) | |
tree | f2676b4768a95561597ca746afc400eeaffeed7c /provisioning-editparam-html.lsp | |
parent | cd46e0528fdf0fd412416c91b40551140b8f2724 (diff) | |
download | acf-provisioning-e5f62555031d500d50405ba395e330223ac28e9f.tar.bz2 acf-provisioning-e5f62555031d500d50405ba395e330223ac28e9f.tar.xz |
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'provisioning-editparam-html.lsp')
-rw-r--r-- | provisioning-editparam-html.lsp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/provisioning-editparam-html.lsp b/provisioning-editparam-html.lsp index 574cd31..e86faa2 100644 --- a/provisioning-editparam-html.lsp +++ b/provisioning-editparam-html.lsp @@ -3,14 +3,16 @@ htmlviewfunctions = require("htmlviewfunctions") html = require("acf.html") %> -<H1><%= html.html_escape(form.label) %></H1> +<h1><%= html.html_escape(form.label) %></h1> <% htmlviewfunctions.displayform(form, nil, nil, page_info, 2) %> -<H2>Options</H2> -<dl> -<dt></dt><dd><form action="<%= page_info.script .. page_info.prefix .. page_info.controller %>/editoptions" method="POST"> +<h2>Options</h2> +<div class='item'><p class='left'></p> +<div class='right'> +<form action="<%= page_info.script .. page_info.prefix .. page_info.controller %>/editoptions" method="post"> <input type="hidden" name="param_id" value="<%= form.value.param_id.value %>"> <input type="submit" class="submit" value="Edit Options"> -</form></dd></dl> +</form> +</div></div><!-- end .item --> |