Mercurial > p > roundup > code
view roundup/templates/classic/html/user.index @ 1042:adcfdeac4e76
not sure how useful this is...
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 04 Sep 2002 04:47:28 +0000 |
| parents | 5643abab70ed |
| children | cf30c6cdca02 |
line wrap: on
line source
<!-- dollarId: user.index,v 1.3 2002/07/09 05:29:51 richard Exp dollar--> <table width="100%" border=0 cellspacing=0 cellpadding=2 class="list"> <tr class="list-header"> <th>Username</th> <th>Real name</th> <th>Organisation</th> <th>Email address</th> <th>Phone number</th> </tr> <tr tal:repeat="u user/list" tal:attributes="class python:['row-normal', 'row-alt'][repeat['u'].even()]"> <td valign="top"> <a tal:attributes="href string:user${u/id}" tal:content="u/username">username</a> </td> <td valign="top" tal:content="u/realname">realname</td> <td valign="top" tal:content="u/organisation">organisation</td> <td valign="top" tal:content="python:u.address.email()">address</td> <td valign="top" tal:content="u/phone">phone</td> </tr> </table>
