2
xmlns="http://www.w3.org/1999/xhtml"
3
xmlns:tal="http://xml.zope.org/namespaces/tal"
4
xmlns:metal="http://xml.zope.org/namespaces/metal"
5
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6
metal:use-macro="view/macro:page/main_only"
7
i18n:domain="launchpad"
11
<div metal:fill-slot="main">
12
<p tal:condition="not: view/has_relationships">
13
None of the members of
14
“<span tal:replace="context/displayname"/>”
15
are teams, nor is it a member of any other team.
17
<p tal:condition="view/has_only_super_teams">
18
None of the members of
19
“<span tal:replace="context/displayname"/>”
22
<tal:block condition="view/has_sub_teams">
24
These teams are members of
25
“<span tal:replace="context/displayname"/>”:
28
<tal:subteams repeat="team context/sub_teams">
30
tal:condition="team/@@+restricted-membership/userCanViewMembership">
31
<tal:link replace="structure team/fmt:link" />
36
<p tal:condition="view/has_only_sub_teams">
37
“<span tal:replace="context/displayname"/>”
38
is not a member of any other team.
40
<tal:block condition="view/has_super_teams">
42
“<span tal:replace="context/displayname"/>”
43
is a member of these teams:
46
<tal:superteams repeat="team context/super_teams">
48
tal:condition="team/@@+restricted-membership/userCanViewMembership">
49
<tal:link replace="structure team/fmt:link" />