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

Last change on this file since 5930 was 5927, checked in by Henrik Bettermann, 14 years ago

Adjust user and datacenter pages.

File size: 811 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        tal:attributes="class python: repeat['account'].odd() and 'odd' or 'even'">
19      <td tal:content="account/name">username</td>
20      <td tal:content="account/title">Title</td>
21      <td tal:content="account/description">Description</td>
22      <td class="text-right">
23        <form method="post">
24          <input type="hidden" name="userid"
25                 tal:attributes="value account/name"/>
26          <input type="submit" name="edit" value="edit" />
27          <input type="submit" name="delete" value="delete" />
28        </form>
29      </td>
30    </tr>
31  </tbody>
32</table>
Note: See TracBrowser for help on using the repository browser.