diff --git a/templates/week.tmpl b/templates/week.tmpl
index 0672bf4..068aebd 100644
--- a/templates/week.tmpl
+++ b/templates/week.tmpl
@@ -1,8 +1,8 @@
Results for week beginning ${week_start.strftime("%F")}
-
People who posted
+Who posted:
% for u in sorted(good, key=lambda u:u.username):
-- ${u.username}:
+- ${u.name} - @${u.username}:
-
% for p in u.weeks[week]:
@@ -13,15 +13,15 @@ Results for week beginning ${week_start.strftime("%F")}
% endfor
-People who failed to post
+Slackers:
% for u in sorted(lame, key=lambda u:u.username):
-- ${u.username}
+- ${u.name} - @${u.username}
% endfor
% if punt:
-People punted for excessive outstanding balances:
+Who was punted for outstanding balances:
% for u in sorted(punt):
- ${u}
@@ -30,30 +30,30 @@ Results for week beginning ${week_start.strftime("%F")}
% endif
% if skip:
-People who have not yet started
+Who haven't started yet:
% for u in sorted(skip, key=lambda u:u.username):
- - ${u.username}
+ - ${u.name} - @${u.username}
% endfor
% endif
-Beer pool:
-
- This week: | $${5 * len(lame)} |
- Total: | $${pool} |
- Paid: | $${paid} |
+Beer fund:
+
+ 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} | \
+${u} | € ${v} | \
% if i % 3 == 0:
%endif