X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/f9c9b151adae0708ef3b01cd2ecb51208e0a8484..05d76243cf301770badf9a450a9b8a196d5b84ad:/templates/users.tmpl diff --git a/templates/users.tmpl b/templates/users.tmpl index 9971306..e111138 100644 --- a/templates/users.tmpl +++ b/templates/users.tmpl @@ -1,10 +1,40 @@ +

Participants in Good Standing

+ + + + + + +% for u in sorted(userlist, key=lambda u:u.username): + <% if u.end: continue %> + + + + + +% endfor +
WhoBlog linkStart Week
${u.username} + % if u.links: + % for a in u.links: + ${a[0]} + % endfor + % else: + Undecided + % endif + ${u.start}
+ +% if any(map(lambda u: u.end, userlist)): +

Former Participants Punted for Lack of Payment

+ + % for u in sorted(userlist, key=lambda u:u.username): + <% if not u.end: continue %> + % endfor
Who Blog link Start WeekEnd Week
${u.username} @@ -17,6 +47,9 @@ % endif ${u.start} ${u.end}
+ +% endif