aboutsummaryrefslogtreecommitdiffstats
path: root/root/admin/account_group.tt
blob: 3b04992023059f50e8a4823a4de57c1379d36736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Add user [% uid %] to a new group:

<form method='post'>
<input type='hidden' name='uid' value='[% uid %]'>
<input type='hidden' name='op' value='add'>
<select name='group'>
[% FOREACH group IN newgroups %]
<option value='[% group.cn %]'>[% group.cn %]</option>
[% END %]
</select>
<input type='submit' value='Add'>
</form>

Delete user [% uid %] from an existing group:
<form method='post'>
<input type='hidden' name='uid' value='[% uid %]'>
<input type='hidden' name='op' value='delete'>
<select name='group'>
[% FOREACH group IN groups %]
<option value='[% group.cn %]'>[% group.cn %]</option>
[% END %]
</select>
<input type='submit' value='Delete'>
</form>