diff options
Diffstat (limited to 'samba-listshares-html.lsp')
-rw-r--r-- | samba-listshares-html.lsp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/samba-listshares-html.lsp b/samba-listshares-html.lsp index dca452a..41833e8 100644 --- a/samba-listshares-html.lsp +++ b/samba-listshares-html.lsp @@ -24,7 +24,7 @@ html = require("acf.html") <% htmlviewfunctions.displaycommandresults({"editshare", "deleteshare"}, session) %> <% htmlviewfunctions.displaycommandresults({"createshare"}, session, true) %> -<h1>Shares</h1> +<% local header_level = htmlviewfunctions.displaysectionstart(view, page_info) %> <table id="list" class="tablesorter"><thead> <tr> <th>Action</th> @@ -33,14 +33,17 @@ html = require("acf.html") <th>Comment</th> </tr> </thead><tbody> +<% local name = cfe({ type="hidden", value="" }) %> +<% local redir = cfe({ type="hidden", value=page_info.orig_action }) %> <% for i,share in ipairs(view.value) do %> + <% name.value = share.name %> <tr> <td> - <% if viewlibrary.check_permission("editshare") then %> - <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/editshare?name="..share.name.."&redir="..page_info.orig_action, label="Edit "} %> + <% if viewlibrary.check_permission("editshare") then %> + <% htmlviewfunctions.displayitem(cfe({type="link", value={name=name, redir=redir}, label="", option="Edit", action="editshare"}), page_info, -1) %> <% end %> <% if viewlibrary.check_permission("deleteshare") then %> - <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/deleteshare?submit=true&name="..share.name, label="Delete "} %> + <% htmlviewfunctions.displayitem(cfe({type="form", value={name=name}, label="", option="Delete", action="deleteshare"}), page_info, -1) %> <% end %> </td> <td><%= html.html_escape(share.name) %></td> @@ -54,7 +57,7 @@ html = require("acf.html") <% end %> <% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createshare") then %> -<h2>Create new share</h2> +<% local header_level2 = htmlviewfunctions.displaysectionstart(cfe({label="Create new share"}), page_info, htmlviewfunctions.incrementheader(header_level)) %> <form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller) %>/createshare" method="post"> <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" > <div class='item'><p class='left'></p> @@ -62,4 +65,6 @@ html = require("acf.html") <input class="submit" type="submit" value="Create Share"> </div></div><!-- end .item --> </form> +<% htmlviewfunctions.displaysectionend(header_level2) %> <% end %> +<% htmlviewfunctions.displaysectionend(header_level) %> |