source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/usercontainerpage.pt @ 5942

Last change on this file since 5942 was 5942, checked in by Henrik Bettermann, 13 years ago

Revert to removesubobjectspage instead of using remove buttons in index views.

Use zebra css class to distinguish odd and even table lines.

File size: 735 bytes
Line 
1<h2>Portal Users</h2>
2
3<p>
4  Here you can manage portal users. 
5</p>
6
7<table class="zebra">
8  <thead>
9    <tr>
10      <th>Username</th>
11      <th>Title</th>
12      <th>Description</th>
13      <th>Actions</th>
14    </tr>
15  </thead>
16  <tbody>
17    <tr tal:repeat="account context/values">
18      <td tal:content="account/name">username</td>
19      <td tal:content="account/title">Title</td>
20      <td tal:content="account/description">Description</td>
21      <td class="text-right">
22        <form method="post">
23          <input type="hidden" name="userid"
24                 tal:attributes="value account/name"/>
25          <input type="submit" name="edit" value="edit" />
26          <input type="submit" name="delete" value="delete" />
27        </form>
28      </td>
29    </tr>
30  </tbody>
31</table>
Note: See TracBrowser for help on using the repository browser.