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

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