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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
metal:use-macro="view/macro:page/main_only"
i18n:domain="launchpad"
>
<body>
<div metal:fill-slot="main">
<p>
This page lists the specifications that
<tal:name replace="context/displayname" /> is expected to work on, or
is its creator.
</p>
<tal:team_definition define="is_team context/is_team" >
<tal:is_not_team condition="not: is_team">
<div tal:replace="structure context/@@+table-specworkload" />
</tal:is_not_team>
<tal:is_team condition="is_team"
define="members_batch nocall:view/members/currentBatch">
<tal:first condition="not: view/members/firstBatchURL">
<div tal:replace="structure context/@@+table-specworkload" />
</tal:first>
<h2>Team member workload</h2>
<p>
The following people are all members of the
<span tal:replace="context/displayname">Admins</span> team in
Launchpad. We list each of their specification workloads so that you
can get a sense of the overall workload balance.
</p>
<div id="top-navigation" style="margin-bottom: 1em;">
<tal:navigation content="structure view/members/@@+navigation-links-upper" />
</div>
<tal:participants repeat="member members_batch">
<tal:specs define="specifications member/specifications">
<div style="margin-bottom: 1em;" tal:condition="specifications">
<p>
<a tal:replace="structure member/fmt:link">Foo Bar</a>'s
specifications:
</p>
<div tal:replace="structure member/@@+table-specworkload" />
</div>
<p tal:condition="not: specifications">
<a tal:replace="structure member/fmt:link">Foo Bar</a>
has no outstanding specifications.<br />
</p>
</tal:specs>
</tal:participants>
<div>
<tal:navigation content="structure view/members/@@+navigation-links-lower" />
</div>
</tal:is_team>
</tal:team_definition>
</div>
</body>
</html>
|