Remove adehnert's blog from the Planet for now
[iron-blogger] / templates / email.txt
1 Subject: IRON BLOGGER results for the week beginning ${week_start.strftime("%F")}
2 To: iron-blogger@mit.edu
3
4 People who posted:
5 % for u in sorted(good, key=lambda u:u.username):
6  ${u.username}:
7  % for p in u.weeks[week]:
8  - ${p['url']}
9  % endfor
10 % endfor
11
12 People who failed to post:
13 <% cash = 0 %>\
14 % for u in sorted(lame, key=lambda u:u.username):
15  ${u.username}
16 % endfor
17
18 % if skip:
19 People who have not yet started:
20 % for u in sorted(skip,  key=lambda u:u.username):
21  ${u.username}
22 % endfor
23 % endif
24
25 Beer pool:
26 This week: $${5 * len(lame)}.00
27 Total:     $.00

Benjamin Mako Hill || Want to submit a patch?