Code

More documentation.
[roundup.git] / roundup / templates / classic / html / user.index
1 <!-- dollarId: user.index,v 1.3 2002/07/09 05:29:51 richard Exp dollar-->
2 <table width="100%" border=0 cellspacing=0 cellpadding=2 class="list">
3 <tr class="list-header">
4  <th>Username</th>
5  <th>Real name</th>
6  <th>Organisation</th>
7  <th>Email address</th>
8  <th>Phone number</th>
9 </tr>
10 <tr tal:repeat="user context/list"
11     tal:attributes="class python:['row-normal', 'row-alt'][repeat['user'].even()]">
12  <td valign="top">
13   <a tal:attributes="href string:user${user/id}"
14      tal:content="user/username">username</a>
15  </td>
16  <td valign="top" tal:content="user/realname">realname</td>
17  <td valign="top" tal:content="user/organisation">organisation</td>
18  <td valign="top" tal:content="python:user.address.email()">address</td>
19  <td valign="top" tal:content="user/phone">phone</td>
20 </tr>
21 </table>