aboutsummaryrefslogtreecommitdiffstats
path: root/root/admin/account_addoc.tt
blob: 771ac8d6b9b6004c44629c28921720eb3f9d4acd (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
Adding objectclass [% oc %] to dn [% dn %]
<form method=post>
<input type=hidden name='dn' value='[% dn %]'>
<input type=hidden name='uid' value='[% uid %]'>
<input type='hidden' name='objectclass' value='[% oc %]'>
<table>
<tr>
<th>Attribute</th>
<th>Value</th>
</tr>
[% FOREACH attr IN must %]
[% IF attr != "objectClass" %]
<tr>
<td>[% attr %]</td>
<td><input name='[% attr %]'><span color='red'>*</span></td>
</tr>
[% END %]
[% END %]
[% FOREACH attr IN may %]
<tr>
<td>[% attr %]</td>
<td><input name='[% attr %]'></td>
</tr>
[% END %]
</table>
<input type='submit' value='Add'>