iron-blogger/templates/users.tmpl

23 lines
533 B
Cheetah

<table id='participants'>
<tr>
<th>Who</th>
<th>Blog link</th>
<th>Start Week</th>
</tr>
% for u in sorted(userlist, key=lambda u:u.username):
<tr>
<td><tt> ${u.username} </tt></td>
<td>
% if u.links:
% for a in u.links:
<a href="${a[1]}">${a[0]}</a>
% endfor
% else:
Undecided
% endif
</td>
<td> ${u.start} </td>
</tr>
% endfor
</table>