render.py: Make pool size available to templates
[iron-blogger] / templates / email.txt
index 38a0d4bac23dc94213b8104008cc31fec3bc11ad..6edfccbba07d36d1be069325e6fc259ac0c28894 100644 (file)
@@ -2,7 +2,7 @@ Subject: IRON BLOGGER results for the week beginning ${week_start.strftime("%F")
 To: iron-blogger@mit.edu
 
 People who posted:
-% for u in sorted(good):
+% for u in sorted(good, key=lambda u:u.username):
  ${u.username}:
  % for p in u.weeks[week]:
  - ${p['url']}
@@ -11,17 +11,17 @@ People who posted:
 
 People who failed to post:
 <% cash = 0 %>\
-% for u in sorted(lame):
+% for u in sorted(lame, key=lambda u:u.username):
  ${u.username}
 % endfor
 
 % if skip:
 People who have not yet started:
-% for u in sorted(skip):
+% for u in sorted(skip,  key=lambda u:u.username):
  ${u.username}
 % endfor
 % endif
 
 Beer pool:
 This week: $${5 * len(lame)}.00
-Total:     $.00
+Total:     $${pool}.00

Benjamin Mako Hill || Want to submit a patch?