diff options
author | Adam Young <ayoung@redhat.com> | 2010-08-06 10:01:44 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-08-06 11:55:38 -0400 |
commit | 125bd09faf21411fafda01e76989b4856bbd267c (patch) | |
tree | b9e2ad70165154f95463f6a69dc5d62de5821f87 /install/static/group-details.inc | |
parent | a63fd83e890ed4f2ec3f0cd0f96f0a329698796a (diff) | |
download | freeipa.git-125bd09faf21411fafda01e76989b4856bbd267c.tar.gz freeipa.git-125bd09faf21411fafda01e76989b4856bbd267c.tar.xz freeipa.git-125bd09faf21411fafda01e76989b4856bbd267c.zip |
The Javascript code for the new web UI
Now with whitespace cleanup.
Diffstat (limited to 'install/static/group-details.inc')
-rw-r--r-- | install/static/group-details.inc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/install/static/group-details.inc b/install/static/group-details.inc new file mode 100644 index 00000000..445042b8 --- /dev/null +++ b/install/static/group-details.inc @@ -0,0 +1,32 @@ +<script type="text/javascript"> + $(document).ready(function(){ + load_object($('body'),'group'); + }); +</script> +<h1>Managing group:</h1> +<div id="buttons"> + <a href="dummy"><img id="butreset" src="but-reset.png" alt="Reset" /></a> + <a href="dummy"><img id="butupdate" src="but-update.png" alt="Update" /></a> +</div> +<ul id="viewtype"> + <li id="viewcaption">View:</li> + <li> + <img src="but-selected.png" alt="" /> + Personal Details + </li> + <li> + <img src="but-unselected.png" alt="" /> + <a href="memberof?pkey=${pkey}">Memberships</a> + </li> +</ul> +<hr /> + +<h2 onclick="h2_on_click(this)">− Group Details</h2> +<dl id="identity" class="entryattrs"> + <dt title="cn">Group Name:</dt> + <dt title="description">Description:</dt> + <dt title="gidnumber">GID</dt> +</dl> +<hr /> + + |