% local view, viewlibrary, page_info, session = ... htmlviewfunctions = require("htmlviewfunctions") html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"deletetemplate", "edittemplate"}, session) %> <% htmlviewfunctions.displaycommandresults({"createtemplate"}, session, true) %> <% local header_level = htmlviewfunctions.displaysectionstart(view, page_info) %>
Action | File Name | Label | Sequence | File Size | Last Modified |
---|---|---|---|---|---|
<% filename.value = v.filename %> <% if viewlibrary.check_permission("edittemplate") and v.label then %> <% htmlviewfunctions.displayitem(cfe({type="link", value={filename=filename, redir=redir}, label="", option="Edit", action="edittemplate"}), page_info, -1) %> <% end %> <% if viewlibrary.check_permission("deletetemplate") and v.label then %> <% htmlviewfunctions.displayitem(cfe({type="form", value={filename=filename}, label="", option="Delete", action="deletetemplate", class="deletetemplate"}), page_info, -1) %> <% end %> <% if viewlibrary.check_permission("createtemplate") and not v.label then %> <% htmlviewfunctions.displayitem(cfe({type="link", value={filename=filename, redir=redir}, label="", option="Create", action="createtemplate"}), page_info, -1) %> <% end %> | <%= html.html_escape(v.filename) %> | <%= html.html_escape(v.label) %> | <%= html.html_escape(v.seq) %> | <%= html.html_escape(v.orig_size) %>b<%= html.html_escape(v.size) %> | <%= html.html_escape(v.mtime) %> |
<%= html.html_escape(view.errtxt) %>
<% end %> <% if #view.value == 0 then %>No templates found
<% end %> <% htmlviewfunctions.displaysectionend(header_level) %> <% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createtemplate") then viewlibrary.dispatch_component("createtemplate") end %>