2009-12-30 05:04:30 +00:00
|
|
|
<h2>People who posted</h2>
|
|
|
|
<ul>
|
|
|
|
% for u in sorted(good, key=lambda u:u.username):
|
|
|
|
<li><b>${u.username}:</b>
|
|
|
|
<ul>
|
|
|
|
% for p in u.weeks[week]:
|
2010-01-26 15:57:32 +00:00
|
|
|
<li><a href="${p['url']}">${p['title'] or "[untitled post]"}</a></li>
|
2009-12-30 05:04:30 +00:00
|
|
|
% endfor
|
|
|
|
</ul>
|
2010-01-14 17:08:47 +00:00
|
|
|
</li>
|
2009-12-30 05:04:30 +00:00
|
|
|
% endfor
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2>People who failed to post</h2>
|
|
|
|
<ul>
|
|
|
|
% for u in sorted(lame, key=lambda u:u.username):
|
|
|
|
<li><b>${u.username}</b></li>
|
|
|
|
% endfor
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
% if skip:
|
|
|
|
<h2>People who have not yet started</h2>
|
|
|
|
<ul>
|
|
|
|
% for u in sorted(skip, key=lambda u:u.username):
|
|
|
|
<li><b>${u.username}</b></li>
|
|
|
|
% endfor
|
|
|
|
</ul>
|
|
|
|
% endif
|
|
|
|
|
|
|
|
<h2>Beer pool:</h2>
|
|
|
|
<table>
|
|
|
|
<tr> <td> This week: </td> <td> $${5 * len(lame)}.00 </td> </tr>
|
|
|
|
<tr> <td> Total: </td> <td> $X.00 </td> </tr>
|
|
|
|
</table>
|