Mercurial > p > roundup > code
view templates/minimal/html/user.index.html @ 1677:d4e615fcbe04
Made subject_re an attribute of MailGW...
...so that it can be easily overridden in an instance's
interfaces.MailGW, and wrote subject_re as a re.VERBOSE, with a couple
of comments.
| author | Jean Jordaan <neaj@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jun 2003 08:37:15 +0000 |
| parents | 21312a7564fd |
| children | 3a4abf6d48c2 |
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> <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>Email address</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.address.email()">address</td> </tr> </table> </td> </tal:block>
