aboutsummaryrefslogtreecommitdiffstats
path: root/root/admin/group.tt
blob: 803f099cf8ef7ead80925da948d87d24e46e9a32 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<form method='POST'>
<table>
<tr>
<td>
[% l('Search by') %]
</td>
<td>
<select name="attribute">
<option value="cn">[% l('Group name') %]</option>
<option value="member">[% l('member') %]</option>
</select>
</td>
<!-- td>
<select name="matchtype">
<option value="substring">[% l('contains') %]</option>
<option value="exact">[% l('is exactly') %]</option>
<option value="gte">[% l('greater than or equal to') %]</option>
<option value="lt">[% l('less than') %]</option>
</select>
</td -->
<td><input name='value'></td>
</table>
</form>
[% IF entries.size %]
[% heading %]
<table border=0>
<tr>
<th>[% l('Group Name') %]</th>
</tr>
[% FOREACH entry IN entries %]
<tr>
<td><a href="[% c.uri_for('/admin/group_modify') %]/[% entry.cn %]">[% entry.cn %]</a></td>
<td>[% entry.cn %]</td>
</tr>
[% END %]
</table>
[% END %]