<% local form, viewlibrary, page_info, session = ... %> <% require("viewfunctions") %> <% --[[ DEBUG INFORMATION io.write("

DEBUGGING

DEBUG INFO: CFE

") io.write(html.cfe_unpack(form)) io.write("
") --]] %> <% displaycommandresults({"newuser", "edituser", "deleteuser"}, session) %>

User Accounts

Create new account

Existing account

<% for name,user in pairs(form.value) do %>
<%= html.html_escape(name) %>
<%= html.html_escape(user.value.userid.label) %> <%= html.html_escape(user.value.userid.value) %>
<%= html.html_escape(user.value.username.label) %> <%= html.html_escape(user.value.username.value) %>
<%= html.html_escape(user.value.roles.label) %> <%= html.html_escape(table.concat(user.value.roles.value, " / ")) %>
Option [Edit this account] [Delete this account] [View roles for this account]
<% end %>