view roundup/templates/classic/html/user.index @ 1320:3758a5af985f

Lots of little fixes in this update: - fixed Date.local() - email quoted text stripping is controllable again [SF#650742] - extract attachment name from content-disposition if name missing [SF#637278] - removed FILTER_POSITION from bundled configs - reverse message listing in issue display (reversion of recent change) - bad entries for multilink editing in cgi don't traceback now [SF#640310]
author Richard Jones <richard@users.sourceforge.net>
date Tue, 10 Dec 2002 00:11:16 +0000
parents a9a3c378acc2
children
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>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="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>
 <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>

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