X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/c6a665ac9a96bb9fd7564f9cfc1e53a5bc1c9366..05d76243cf301770badf9a450a9b8a196d5b84ad:/templates/users.tmpl 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

+ + + + + + +% 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 userlist: +% 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