Wordpress 'participants' page template.
This commit is contained in:
parent
efd8a68270
commit
c6a665ac9a
22
templates/users.tmpl
Normal file
22
templates/users.tmpl
Normal 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>
|
Loading…
Reference in a new issue