mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-03 20:21:24 -06:00
56 lines
1.5 KiB
Genshi
56 lines
1.5 KiB
Genshi
|
<div xmlns:py="http://purl.org/kid/ns#"
|
||
|
class="simpleroster">
|
||
|
<form action="${action}" name="${name}" method="${method}" class="tableform">
|
||
|
|
||
|
<div class="formsection">Group Details</div>
|
||
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
||
|
<tr>
|
||
|
<th>
|
||
|
<label class="fieldlabel" for="${group.cn.field_id}"
|
||
|
py:content="group.cn.label" />:
|
||
|
</th>
|
||
|
<td>
|
||
|
<span py:replace="group.cn.display(value_for(group.cn))" />
|
||
|
<span py:if="tg.errors.get('cn')" class="fielderror"
|
||
|
py:content="tg.errors.get('cn')" />
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<th>
|
||
|
<label class="fieldlabel" for="${group.description.field_id}"
|
||
|
py:content="group.description.label" />:
|
||
|
</th>
|
||
|
<td>
|
||
|
<span py:replace="group.description.display(value_for(group.description))" />
|
||
|
<span py:if="tg.errors.get('description')" class="fielderror"
|
||
|
py:content="tg.errors.get('description')" />
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<th>
|
||
|
<label class="fieldlabel" for="${group.gidnumber.field_id}"
|
||
|
py:content="group.gidnumber.label" />:
|
||
|
</th>
|
||
|
<td>
|
||
|
Generated by server
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
||
|
<tr>
|
||
|
<th></th>
|
||
|
<td>
|
||
|
<br />
|
||
|
<input type="submit" class="submitbutton" name="submit" value="Add Group"/>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</form>
|
||
|
</div>
|