<% 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) %> <% local filename = cfe({ type="hidden", value="" }) %> <% local redir = cfe({ type="hidden", value=page_info.orig_action }) %> <% for i,file in ipairs( view.value ) do %> <% end %>
Action File Name Label Sequence File Size Last Modified
<% filename.value = file.filename %> <% if viewlibrary.check_permission("edittemplate") and file.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 file.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 file.label then %> <% htmlviewfunctions.displayitem(cfe({type="link", value={filename=filename, redir=redir}, label="", option="Create", action="createtemplate"}), page_info, -1) %> <% end %> <%= html.html_escape(file.filename) %> <%= html.html_escape(file.label) %> <%= html.html_escape(file.seq) %> <%= html.html_escape(file.size or 0) %>b<%= format.formatfilesize(file.size) %> <%= format.formattime(file.mtime) %>
<% if view.errtxt then %>

<%= 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 %>