diff --git a/templates/week.tmpl b/templates/week.tmpl
new file mode 100644
index 0000000..3941c63
--- /dev/null
+++ b/templates/week.tmpl
@@ -0,0 +1,33 @@
+
People who posted
+
+% for u in sorted(good, key=lambda u:u.username):
+- ${u.username}:
+
+% endfor
+
+
+People who failed to post
+
+% for u in sorted(lame, key=lambda u:u.username):
+- ${u.username}
+% endfor
+
+
+% if skip:
+People who have not yet started
+
+% for u in sorted(skip, key=lambda u:u.username):
+ - ${u.username}
+% endfor
+
+% endif
+
+Beer pool:
+
+ This week: | $${5 * len(lame)}.00 |
+ Total: | $X.00 |
+