summaryrefslogtreecommitdiffstats
path: root/openssh-listusers-html.lsp
blob: 23b14a32ec7a5a9e03bdc03e6862bb0d1dea3689 (plain)
1
2
3
4
5
6
7
8
9
10
<% local view, viewlibrary, page_info, session = ... %>
<% html = require("acf.html") %>

<H1>System User Accounts</H1>
<DL>
<% for i,user in ipairs(view.value) do %>
	<DT><IMG SRC='<%= html.html_escape(page_info.wwwprefix..page_info.staticdir) %>/tango/16x16/apps/system-users.png' HEIGHT='16' WIDTH='16'> <%= html.html_escape(user) %></DT>
	<DD><A HREF='listauth?user=<%= html.html_escape(user) %>'>Edit this account</A></DD>
<% end %>
</DL>