iron-blogger/templates/week.tmpl

98 lines
2.3 KiB
Cheetah
Raw Normal View History

2010-02-02 03:07:26 +00:00
Results for week beginning ${week_start.strftime("%F")}
<h2>Who posted:</h2>
2010-05-24 01:08:25 +00:00
<dl>
2009-12-30 05:04:30 +00:00
% for u in sorted(good, key=lambda u:u.username):
<dt><span class="user"><strong>${u.name} </strong> \
% if u.twitter != False:
<a href="https://twitter.com/#!/${u.username}">@${u.username}</a> \
% endif
:</span></dt>
2010-05-24 01:08:25 +00:00
<dd>
2009-12-30 05:04:30 +00:00
<ul>
% for p in u.weeks[week]:
<li><a href="${p['url']}">${p['title'] or "[untitled post]"}</a></li>
2009-12-30 05:04:30 +00:00
% endfor
</ul>
2010-05-24 01:08:25 +00:00
</dd>
2009-12-30 05:04:30 +00:00
% endfor
2010-05-24 01:08:25 +00:00
</dl>
2009-12-30 05:04:30 +00:00
<h2>Slackers:</h2>
2009-12-30 05:04:30 +00:00
<ul>
% for u in sorted(lame, key=lambda u:u.username):
<li class="user"><strong>${u.name} </strong> \
% if u.twitter != False:
<a href="https://twitter.com/#!/${u.username}">@${u.username}</a> \
% endif
</li>
2009-12-30 05:04:30 +00:00
% endfor
</ul>
2010-06-01 00:54:47 +00:00
% if punt:
<h2>Who was punted for outstanding balances:</h2>
2010-06-01 00:54:47 +00:00
<ul>
% for u in sorted(punt):
<li class="user">${u}</li>
% endfor
</ul>
% endif
2009-12-30 05:04:30 +00:00
% if skip:
<h2>Who haven't started yet:</h2>
2009-12-30 05:04:30 +00:00
<ul>
% for u in sorted(skip, key=lambda u:u.username):
<li class="user"><strong>${u.name} </strong> \
2012-08-13 09:27:39 +00:00
% if u.twitter != False:
- <a href="https://twitter.com/#!/${u.username}">@${u.username}</a> \
% endif
</li>
% endfor
</ul>
% endif
% if skipped_users:
<h2>Who is currently skipped:</h2>
2012-08-13 09:27:39 +00:00
<ul>
% for u in sorted(skipped_users, key=lambda u:u.username):
<li class="user"><strong>${u.name} </strong> \
% if u.twitter != False:
- <a href="https://twitter.com/#!/${u.username}">@${u.username}</a> \
% endif
</li>
2009-12-30 05:04:30 +00:00
% endfor
</ul>
% endif
<h2>Beer fund:</h2>
<table style="border-left-style:none; border-right-style:none;">
<tr> <td> This week: </td> <td> &euro; ${5 * len(lame)} </td> </tr>
<tr> <td> Total: </td> <td> &euro; ${pool} </td> </tr>
<tr> <td> Paid: </td> <td> &euro; ${paid} </td> </tr>
2012-02-24 13:13:24 +00:00
<tr> <td> Events: </td> <td> &euro; ${event} </td> </tr>
</table>
<h2>Debts:</h2>
2010-05-24 01:08:25 +00:00
<% i = 0 %>
<table class="debts" style="border-left-style:none; border-right-style:none;">
% for (u, v) in sorted(debts, key=lambda p:p[1], reverse=True):
2010-05-24 01:08:25 +00:00
% if i % 3 == 0:
<tr>\
% endif
<% i += 1 %>\
<td class="user">${u}</td> <td class="money">&euro; ${v}</td>\
2010-05-24 01:08:25 +00:00
% if i % 3 == 0:
</tr>
%endif
% endfor
2010-05-24 01:08:25 +00:00
% if i % 3 != 0:
</tr>
%endif
2009-12-30 05:04:30 +00:00
</table>
2012-07-09 20:23:02 +00:00
<h2>Previously Punted (pay &euro;30 to return):</h2>
<ul>
% for (u) in sorted(punted, key=lambda p:p.username):
<li>${u.username} (${u.end})</li>
% endfor
2012-09-29 18:55:49 +00:00
</ul>