Wordpress 'participants' page template.

This commit is contained in:
Nelson Elhage 2009-12-30 00:07:55 -05:00
parent efd8a68270
commit c6a665ac9a
1 changed files with 22 additions and 0 deletions

22
templates/users.tmpl Normal file
View File

@ -0,0 +1,22 @@
<table id='participants'>
<tr>
<th>Who</th>
<th>Blog link</th>
<th>Start Week</th>
</tr>
% for u in userlist:
<tr>
<td><tt> ${u.username} </tt></td>
<td>
% if u.links:
% for a in u.links:
<a href="${a[1]}">${a[0]}</a>
% endfor
% else:
Undecided
% endif
</td>
<td> ${u.start} </td>
</tr>
% endfor
</table>