mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-28 17:14:38 -06:00
bde9959091
The memberOf attribute includes members that are directly in the group via the "member" attribute and those that are included as a result of being in a group that is in the group. The UI needs to be able to distinguish between the two. 438706
132 lines
4.1 KiB
Genshi
132 lines
4.1 KiB
Genshi
<!--
|
|
Copyright (C) 2007 Red Hat
|
|
see file 'COPYING' for use and warranty information
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; version 2 only
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
-->
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
|
|
py:extends="'grouplayout.kid'">
|
|
<head>
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
|
|
<title>View Group</title>
|
|
</head>
|
|
<body>
|
|
<?python
|
|
cn = group.get('cn')
|
|
if isinstance(cn, list):
|
|
cn = cn[0]
|
|
edit_url = tg.url('/group/edit', cn=cn)
|
|
from ipagui.helpers import userhelper
|
|
?>
|
|
<div id="details">
|
|
<h1 class="usergroup">View Group</h1>
|
|
|
|
<input py:if="'editors' in tg.identity.groups or 'admins' in tg.identity.groups"
|
|
class="submitbutton" type="button"
|
|
onclick="document.location.href='${edit_url}'"
|
|
value="Edit Group" />
|
|
|
|
<h2 class="formsection">Group Details</h2>
|
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
|
<tr>
|
|
<th>
|
|
<label class="fieldlabel" py:content="fields.cn.label" />:
|
|
</th>
|
|
<td>${group.get("cn")}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>
|
|
<label class="fieldlabel" py:content="fields.description.label" />:
|
|
</th>
|
|
<td>${group.get("description")}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>
|
|
<label class="fieldlabel" py:content="fields.gidnumber.label" />:
|
|
</th>
|
|
<td>${group.get("gidnumber")}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<label class="fieldlabel" py:content="fields.nsAccountLock.label" />:
|
|
</th>
|
|
<td>${userhelper.account_status_display(group.get("nsAccountLock"))}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2 class="formsection">Group Members</h2>
|
|
<div py:for="member in members">
|
|
<?python
|
|
|
|
member_uid = member.get('uid')
|
|
member_inherited = member.get('inherited')
|
|
if member_uid:
|
|
member_cn = "%s %s" % (member.get('givenName', ''), member.get('sn', ''))
|
|
member_desc = "(%s)" % member_uid
|
|
if member_inherited:
|
|
member_type = "iuser"
|
|
else:
|
|
member_type = "user"
|
|
view_url = tg.url('/user/show', uid=member_uid)
|
|
else:
|
|
mem = member.get('cn')
|
|
if isinstance(mem, list):
|
|
mem = mem[0]
|
|
member_cn = "%s" % mem
|
|
member_desc = "[group]"
|
|
if member_inherited:
|
|
member_type = "igroup"
|
|
else:
|
|
member_type = "group"
|
|
view_url = tg.url('/group/show', cn=member_cn)
|
|
?>
|
|
<span py:if='member_type == "user"'>
|
|
<b>
|
|
<a href="${view_url}"
|
|
>${member_cn}</a> ${member_desc}
|
|
</b>
|
|
</span>
|
|
<span py:if='member_type == "iuser"'>
|
|
<a href="${view_url}"
|
|
>${member_cn}</a> ${member_desc}
|
|
</span>
|
|
<span py:if='member_type == "group"'>
|
|
<b>
|
|
<i>
|
|
<a href="${view_url}"
|
|
>${member_cn}</a> ${member_desc}
|
|
</i>
|
|
</b>
|
|
</span>
|
|
<span py:if='member_type == "igroup"'>
|
|
<i>
|
|
<a href="${view_url}"
|
|
>${member_cn}</a> ${member_desc}
|
|
</i>
|
|
</span>
|
|
</div>
|
|
|
|
<br/>
|
|
<hr />
|
|
<input py:if="'editors' in tg.identity.groups or 'admins' in tg.identity.groups"
|
|
class="submitbutton" type="button"
|
|
onclick="document.location.href='${edit_url}'"
|
|
value="Edit Group" />
|
|
</div>
|
|
</body>
|
|
</html>
|