view roundup/templates/classic/html/user.index @ 1204:b862bbf2067a

Replaced the content() callback ickiness with Page Template macro usage changed the default CSS style to be less offensive to some ;) better handling of Page Template compilation errors removed dependency on ComputedAttribute
author Richard Jones <richard@users.sourceforge.net>
date Wed, 25 Sep 2002 02:10:25 +0000
parents 7e193bbda38e
children 9e7b2a54f862
line wrap: on
line source

<!-- dollarId: user.index,v 1.3 2002/07/09 05:29:51 richard Exp dollar-->
<tal:block metal:use-macro="templates/page/macros/page">
<title metal:fill-slot="head_title">User listing</title>
<td class="page-header-top" metal:fill-slot="body_title">
 <h2>User listing</h2>
</td>
<td class="content" metal:fill-slot="content">

<span tal:condition="not:context/is_view_ok">
You are not allowed to view this page.
</span>

<table width="100%" tal:condition="context/is_view_ok" class="list">
<tr>
 <th>Username</th>
 <th>Real name</th>
 <th>Organisation</th>
 <th>Email address</th>
 <th>Phone number</th>
</tr>
<tr tal:repeat="user context/list"
    tal:attributes="class python:['row-normal', 'row-alt'][repeat['user'].even()]">
 <td>
  <a tal:attributes="href string:user${user/id}"
     tal:content="user/username">username</a>
 </td>
 <td tal:content="user/realname">realname</td>
 <td tal:content="user/organisation">organisation</td>
 <td tal:content="python:user.address.email()">address</td>
 <td tal:content="user/phone">phone</td>
</tr>
</table>
</td>

</tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/