1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<tal:root
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
omit-tag="">
<metal:block define-macro="show">
<div class="portlet" id="portlet-team-bugs"
tal:condition="context/team_memberships">
<h2><span tal:replace="context/title" />'s teams</h2>
<div class="portletBody">
<table>
<tal:teams repeat="team context/teams_participated_in">
<tr tal:condition="team/@@+restricted-membership/userCanViewMembership">
<td tal:content="structure team/image:icon" />
<td>
<a tal:attributes="
href string:${team/fmt:url}/${view/view_name}"
tal:content="team/title">Team name</a>
</td>
</tr>
</tal:teams>
</table>
</div>
</div>
</metal:block>
</tal:root>
|