X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/c6a665ac9a96bb9fd7564f9cfc1e53a5bc1c9366..2da7122e805531f77770abe9f0c36ca8e6a97531:/templates/users.tmpl?ds=sidebyside
diff --git a/templates/users.tmpl b/templates/users.tmpl
index 0c58f20..e111138 100644
--- a/templates/users.tmpl
+++ b/templates/users.tmpl
@@ -1,10 +1,40 @@
+
Participants in Good Standing
+
+
+ Who |
+ Blog link |
+ Start Week |
+
+% for u in sorted(userlist, key=lambda u:u.username):
+ <% if u.end: continue %>
+
+ ${u.username} |
+
+ % if u.links:
+ % for a in u.links:
+ ${a[0]}
+ % endfor
+ % else:
+ Undecided
+ % endif
+ |
+ ${u.start} |
+
+% endfor
+
+
+% if any(map(lambda u: u.end, userlist)):
+Former Participants Punted for Lack of Payment
+
Who |
Blog link |
Start Week |
+ End Week |
-% for u in userlist:
+% for u in sorted(userlist, key=lambda u:u.username):
+ <% if not u.end: continue %>
${u.username} |
@@ -17,6 +47,9 @@
% endif
|
${u.start} |
+ ${u.end} |
% endfor
+
+% endif