%!
from kaithem.src.util import url
%>
<%include file="/pageheader.html"/>
Users and Groups [help]
Note: Your changes are saved temporarily to RAM until either a configured autosave(Off by default), or a manual save of the server state.
Manage Authorization
Users
The following users are registered with the server.
To allow unregistered users access to certain permissions, create a user named '__guest__' with password '__none__'
All usernames surrounded by double underscores are reserved.
%for i in sorted(auth.Users.keys()):
- ${i}
%endfor
Groups
The following groups are registered with the server.
%for i in sorted(auth.Groups.keys()):
- ${i}
%endfor
<%include file="/pagefooter.html"/>