add "twitter: no" to the specified user in bloggers.yml to turn off the Twitter link for this user.
30 lines
821 B
Cheetah
30 lines
821 B
Cheetah
<table id='participants'nowrap>
|
|
<tr>
|
|
<th>Who</th>
|
|
<th>Twitter</th>
|
|
<th>Blog link</th>
|
|
<th>Start Week</th>
|
|
</tr>
|
|
% for u in sorted(userlist, key=lambda u:u.username):
|
|
<tr>
|
|
<td align="left" valign="top">${u.name}</td>
|
|
<td align="left" valign="top">
|
|
% if u.twitter != False:
|
|
<a href="https://twitter.com/#!/${u.username}">@${u.username}</a>
|
|
% endif
|
|
</td>
|
|
<td align="left" valign="top">
|
|
% if u.links:
|
|
% for a in u.links:
|
|
<a href="${a[1]}">${a[0]}</a>
|
|
% endfor
|
|
% else:
|
|
Undecided
|
|
% endif
|
|
</td>
|
|
<td align="left" valign="top"> ${u.start_de} </td>
|
|
|
|
</tr>
|
|
% endfor
|
|
</table>
|