X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/f777b69424a7a95bd42492d7351ec643b0f4a8e1..4759fb0163bd9eb4a513889ee6bd6f20dfab6c66:/templates/week.tmpl
diff --git a/templates/week.tmpl b/templates/week.tmpl
index 3941c63..0672bf4 100644
--- a/templates/week.tmpl
+++ b/templates/week.tmpl
@@ -1,33 +1,64 @@
+Results for week beginning ${week_start.strftime("%F")}
People who posted
-
+
% for u in sorted(good, key=lambda u:u.username):
-
- ${u.username}:
+
- ${u.username}:
+-
+
% endfor
-
+
People who failed to post
% for u in sorted(lame, key=lambda u:u.username):
-- ${u.username}
+- ${u.username}
% endfor
+% if punt:
+People punted for excessive outstanding balances:
+
+% for u in sorted(punt):
+- ${u}
+% endfor
+
+% endif
+
% if skip:
People who have not yet started
% for u in sorted(skip, key=lambda u:u.username):
- - ${u.username}
+ - ${u.username}
% endfor
% endif
Beer pool:
- This week: | $${5 * len(lame)}.00 |
- Total: | $X.00 |
+ This week: | $${5 * len(lame)} |
+ Total: | $${pool} |
+ Paid: | $${paid} |
+
+
+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