Include more monetary information in reports.
[iron-blogger] / templates / users.tmpl
1       <table id='participants'>
2         <tr>
3           <th>Who</th>
4           <th>Blog link</th>
5           <th>Start Week</th>
6         </tr>
7 % for u in sorted(userlist, key=lambda u:u.username):
8         <tr>
9           <td><tt> ${u.username} </tt></td>
10           <td>
11            % if u.links:
12             % for a in u.links:
13            <a href="${a[1]}">${a[0]}</a>
14             % endfor
15            % else:
16              Undecided
17            % endif
18           </td>
19           <td> ${u.start} </td>
20         </tr>
21 % endfor
22       </table>

Benjamin Mako Hill || Want to submit a patch?