File:  [Repository] / basket / zpt / BasketMain_Basket_manageUserRights_standard.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Apr 3 11:05:04 2006 UTC (18 years, 2 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
mainor

<html metal:use-macro="here/main_template/macros/page">
<head>
<title>Default</title>
<style metal:fill-slot="additionalStyles" type="text/css">
td.vario { background-color:#AC1D15 } 
</style>
</head>
<body>
<body>

<!-- span = bodytext -->
<span metal:fill-slot="body" tal:omit-tag="">
<span tal:define="users python:here.groupFolder.getGroupsAndUsers()"> 
<h2>Manage user rights</h2>
<h3>Admin group</h3>
<p>Registered admins</p>
<table>
<tr tal:repeat="userName python:users['admin']">
<td tal:content="userName"/>
</tr>
</table>
<p>Add users (usernames as komma separated list):<br>
<form action="groupFolder/addKommaListOfUsersToGroup" method="get">
<input type="hidden" name="group" value="admin">
<input type="text" size="80" name="users">
<input type="submit" value="add">
</form>
</p>
<h3>Editor group</h3>
<p>Registered editors</p>
<table>
<tr tal:repeat="userName python:users['editor']">
<td tal:content="userName"/>
</tr>
</table>
<p>Add users (usernames as komma separated list):<br>
<form action="groupFolder/addKommaListOfUsersToGroup">
<input type="hidden" name="group" value="editor">
<input type="text" size="80" name="users">
<input type="submit" value="add">
</form>
</p>
</span>
</span>
</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>