1 <h1>Participants in Good Standing</h1>
2 <table id='participants'>
8 % for u in sorted(userlist, key=lambda u:u.username):
9 <% if u.end: continue %>
11 <td><tt> ${u.username} </tt></td>
15 <a href="${a[1]}">${a[0]}</a>
26 % if any(map(lambda u: u.end, userlist)):
27 <h1>Former Participants Punted for Lack of Payment</h1>
29 <table id='participants'>
36 % for u in sorted(userlist, key=lambda u:u.username):
37 <% if not u.end: continue %>
39 <td><tt> ${u.username} </tt></td>
43 <a href="${a[1]}">${a[0]}</a>