view templates/minimal/html/user.index.html @ 3726:b11142bb2aa2 1.2.1

Password confirm field in user editing. Pre-1.2.1-release stuff too
author Richard Jones <richard@users.sourceforge.net>
date Sat, 07 Oct 2006 03:03:29 +0000
parents 460eb0209a9e
children a9f6eb633452
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" i18n:translate="">User listing - <span
 i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title>
<span metal:fill-slot="body_title" tal:omit-tag="python:1"
 i18n:translate="">User listing</span>
<td class="content" metal:fill-slot="content">

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

<table width="100%" tal:condition="context/is_view_ok" class="list">
<tr>
 <th i18n:translate="">Username</th>
 <th i18n:translate="">Email address</th>
</tr>
<tal:block repeat="user context/list">
 <tr tal:condition="user/is_view_ok"
    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>
</tal:block>
</table>
</td>

</tal:block>

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