summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/templates/groupnewform.kid
diff options
context:
space:
mode:
authorKevin McCarthy <kmccarth@redhat.com>2007-09-11 14:51:51 -0700
committerKevin McCarthy <kmccarth@redhat.com>2007-09-11 14:51:51 -0700
commitc4ab64cabca33d19b9ec4ed9dd3ab801671339d8 (patch)
treeb888784811411b57fdd4e915e7a2c39e6d0262ea /ipa-server/ipa-gui/ipagui/templates/groupnewform.kid
parentb4297caa8bb4d6dfa95dc565169b2da622bafe86 (diff)
downloadfreeipa-c4ab64cabca33d19b9ec4ed9dd3ab801671339d8.tar.gz
freeipa-c4ab64cabca33d19b9ec4ed9dd3ab801671339d8.tar.xz
freeipa-c4ab64cabca33d19b9ec4ed9dd3ab801671339d8.zip
Add group screen. More to come...
Diffstat (limited to 'ipa-server/ipa-gui/ipagui/templates/groupnewform.kid')
-rw-r--r--ipa-server/ipa-gui/ipagui/templates/groupnewform.kid55
1 files changed, 55 insertions, 0 deletions
diff --git a/ipa-server/ipa-gui/ipagui/templates/groupnewform.kid b/ipa-server/ipa-gui/ipagui/templates/groupnewform.kid
new file mode 100644
index 000000000..66b7c43bb
--- /dev/null
+++ b/ipa-server/ipa-gui/ipagui/templates/groupnewform.kid
@@ -0,0 +1,55 @@
+<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>