X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/1e83f5c2a466241b2c02b5a5d5c3d3936f5987ea..e2af17b2d64ee76883485cbb24e5c0f22899d6b8:/templates/week.tmpl?ds=sidebyside
diff --git a/templates/week.tmpl b/templates/week.tmpl
index 68f6474..0672bf4 100644
--- a/templates/week.tmpl
+++ b/templates/week.tmpl
@@ -1,35 +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: | ${pool}.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