Results for week beginning ${week_start.strftime("%F")}
Who posted:
% for u in sorted(good, key=lambda u:u.username):
- ${u.name} \
% if u.twitter != False:
@${u.username} \
% endif
:
-
% endfor
Slackers:
% for u in sorted(lame, key=lambda u:u.username):
- ${u.name} \
% if u.twitter != False:
@${u.username} \
% endif
% endfor
% if punt:
Who was punted for outstanding balances:
% for u in sorted(punt):
- ${u}
% endfor
% endif
% if skip:
Who haven't started yet:
% for u in sorted(skip, key=lambda u:u.username):
- ${u.name} \
% if u.twitter != False:
- @${u.username} \
% endif
% endfor
% endif
% if skipped_users:
Who is currently skipped:
% for u in sorted(skipped_users, key=lambda u:u.username):
- ${u.name} \
% if u.twitter != False:
- @${u.username} \
% endif
% endfor
% endif
Beer fund:
This week: | € ${5 * len(lame)} |
Total: | € ${pool} |
Paid: | € ${paid} |
Events: | € ${event} |
Debts:
<% i = 0 %>
% for (u, v) in sorted(debts, key=lambda p:p[1], reverse=True):
% if i % 3 == 0:
\
% endif
<% i += 1 %>\
${u} | € ${v} | \
% if i % 3 == 0:
%endif
% endfor
% if i % 3 != 0:
%endif
Previously Punted (pay €30 to return):
% for (u) in sorted(punted, key=lambda p:p.username):
- ${u.username} (${u.end})
% endfor