summaryrefslogtreecommitdiffstats
path: root/provisioning-listparams-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-04-23 16:12:07 +0000
committerTed Trask <ttrask01@yahoo.com>2014-04-23 16:12:07 +0000
commitd051bf48fb53481082b12a6778e7c7863f1979ca (patch)
treec36b471fe04729755c3c3bb264f2698a08505384 /provisioning-listparams-html.lsp
parent9e6bec69bac4ee45a8355aa5993bbd3f1c71dfcf (diff)
downloadacf-provisioning-d051bf48fb53481082b12a6778e7c7863f1979ca.tar.bz2
acf-provisioning-d051bf48fb53481082b12a6778e7c7863f1979ca.tar.xz
Changes to use new htmlviewfunctions functions
Diffstat (limited to 'provisioning-listparams-html.lsp')
-rw-r--r--provisioning-listparams-html.lsp14
1 files changed, 9 insertions, 5 deletions
diff --git a/provisioning-listparams-html.lsp b/provisioning-listparams-html.lsp
index 3b0e255..177b30c 100644
--- a/provisioning-listparams-html.lsp
+++ b/provisioning-listparams-html.lsp
@@ -25,7 +25,7 @@ html = require("acf.html")
<% htmlviewfunctions.displaycommandresults({"deleteparam", "editparam"}, session) %>
<% htmlviewfunctions.displaycommandresults({"createparam"}, session, true) %>
-<h1>Parameters</h1>
+<% local header_level = htmlviewfunctions.displaysectionstart(view, page_info) %>
<table id="list" class="tablesorter"><thead>
<tr>
<th>Action</th>
@@ -35,14 +35,17 @@ html = require("acf.html")
<th>Sequence</th>
</tr>
</thead><tbody>
+<% local param_id = cfe({ type="hidden", value="" }) %>
+<% local redir = cfe({ type="hidden", value=page_info.orig_action }) %>
<% for k,v in ipairs( view.value ) do %>
<tr>
<td>
- <% if viewlibrary.check_permission("deleteparam") then %>
- <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/deleteparam?submit=true&param_id="..v.param_id, label="Delete ", class="deleteparam"} %>
- <% end %>
+ <% param_id.value = v.param_id %>
<% if viewlibrary.check_permission("editparam") then %>
- <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/editparam?param_id="..v.param_id.."&redir="..page_info.orig_action, label="Edit "} %>
+ <% htmlviewfunctions.displayitem(cfe({type="link", value={param_id=param_id, redir=redir}, label="", option="Edit", action="editparam"}), page_info, -1) %>
+ <% end %>
+ <% if viewlibrary.check_permission("deleteparam") then %>
+ <% htmlviewfunctions.displayitem(cfe({type="form", value={param_id=param_id}, label="", option="Delete", action="deleteparam", class="deleteparam"}), page_info, -1) %>
<% end %>
</td>
<td><%= html.html_escape(v.name) %></td>
@@ -60,6 +63,7 @@ html = require("acf.html")
<% if #view.value == 0 then %>
<p>No parameters found</p>
<% end %>
+<% htmlviewfunctions.displaysectionend(header_level) %>
<% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createparam") then
viewlibrary.dispatch_component("createparam")