X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/82bcc31216207a72ae4ab4d4b986cf13b8036ed0..7d6ef92de21ab4f0b5699aca9bc846410040c2ef:/templates/week.tmpl
diff --git a/templates/week.tmpl b/templates/week.tmpl
index 57a88c0..dee7ee4 100644
--- a/templates/week.tmpl
+++ b/templates/week.tmpl
@@ -20,6 +20,15 @@ Results for week beginning ${week_start.strftime("%F")}
% 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
@@ -31,9 +40,9 @@ Results for week beginning ${week_start.strftime("%F")}
Beer pool:
- This week: | $${5 * len(lame)}.00 |
- Total: | $${pool}.00 |
- Paid: | $${paid}.00 |
+ This week: | ${currency}${fine * len(lame)} |
+ Total: | ${currency}${pool} |
+ Paid: | ${currency}${paid} |
Debts:
@@ -44,7 +53,7 @@ Results for week beginning ${week_start.strftime("%F")}
\
% endif
<% i += 1 %>\
-${u} | $${v} | \
+${u} | ${currency}${v} | \
% if i % 3 == 0:
%endif
@@ -53,3 +62,10 @@ Results for week beginning ${week_start.strftime("%F")}
%endif
+
+Previously Punted (pay $30 to return):
+
+% for (u) in sorted(punted, key=lambda p:p.username):
+- ${u.username} (${u.end})
+% endfor
+