Mercurial > p > roundup > code
view templates/classic/html/user.index.html @ 1976:3a4abf6d48c2
body_title improvement
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 19 Jan 2004 23:01:10 +0000 |
| parents | f5c804379c85 |
| children | 97f810f39d16 |
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/icing"> <title metal:fill-slot="head_title">User listing</title> <span metal:fill-slot="body_title" tal:omit-tag="python:1">User listing</span> <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> <th tal:condition="context/is_edit_ok">Retire</th> </tr> <tr tal:repeat="user context/list" tal:attributes="class python:['normal', 'alt'][repeat['user'].index%6/3]"> <td> <a tal:attributes="href string:user${user/id}" tal:content="user/username">username</a> </td> <td tal:content="python:user.realname.plain() or default"> </td> <td tal:content="python:user.organisation.plain() or default"> </td> <td tal:content="python:user.address.email() or default"> </td> <td tal:content="python:user.phone.plain() or default"> </td> <td tal:condition="context/is_edit_ok"> <a tal:attributes="href string:user${user/id}?@action=retire&@template=index"> retire</a> </td> </tr> </table> </td> </tal:block>
