~lool/launchpad-work-items-tracker/meta-values-with-colons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%inherit file="body.html"/>
<%namespace name="util" file="util.html"/>

<%def name="title()">
Teams
</%def>

<h1>Teams</h1>

<p>These are all of the teams. Click on any of them to see their progress towards their goals for the cycle.</p>

% if members:
<ul>
% for member in members:
<li><a href="${util.url(member + '.html')}">${util.real_name(member)}</a></li>
% endfor
</ul>
% else:
<p>No teams!</p>
% endif