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

Last change on this file since 5403 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

File size: 867 bytes
Line 
1<h2>Registered Users</h2>
2
3<table class="zebra">
4  <thead>
5    <tr>
6      <th>Username</th>
7      <th>Title</th>
8      <th>Description</th>
9      <th>Actions</th>
10    </tr>
11  </thead>
12  <tbody>
13    <tr tal:repeat="account context/values"
14        tal:attributes="class python: repeat['account'].odd() and 'odd' or 'even'">
15      <td tal:content="account/name">username</td>
16      <td tal:content="account/title">Title</td>
17      <td tal:content="account/description">Description</td>
18      <td class="text-right">
19        <form method="post">
20          <input type="hidden" name="userid"
21                 tal:attributes="value account/name"/>
22          <input type="submit" name="edit" value="edit" />
23          <input type="submit" name="delete" value="delete" />
24        </form>
25      </td>
26    </tr>
27  </tbody>
28</table>
29<form method="post" action="add">
30  <input type="submit" name="adduser" value="Add user" />
31</form>
Note: See TracBrowser for help on using the repository browser.