+This week: ${currency}${fine * len(lame)}.00
+Total: ${currency}${pool}
+Paid: ${currency}${paid}
+
+Individual debts:
+% for (u, v) in sorted(debts, key=lambda p:p[1], reverse=True):
+ ${u} ${currency}${v}
+% endfor
+% if punted:
+
+PREVIOUSLY PUNTED (pay ${currency}${fine * 6} balance to return):
+% for (u) in sorted(punted, key=lambda p:p.username):
+${"%20s (%s)" % (u.username, u.end)}
+% endfor
+% endif