Last change
on this file since 5936 was
5927,
checked in by Henrik Bettermann, 14 years ago
|
Adjust user and datacenter pages.
|
File size:
811 bytes
|
Rev | Line | |
---|
[5927] | 1 | <h2>Portal Users</h2> |
---|
[4096] | 2 | |
---|
[5927] | 3 | <p> |
---|
| 4 | Here you can manage portal users. |
---|
| 5 | </p> |
---|
| 6 | |
---|
[4626] | 7 | <table class="zebra"> |
---|
[4096] | 8 | <thead> |
---|
| 9 | <tr> |
---|
[4110] | 10 | <th>Username</th> |
---|
| 11 | <th>Title</th> |
---|
| 12 | <th>Description</th> |
---|
[4626] | 13 | <th>Actions</th> |
---|
[4096] | 14 | </tr> |
---|
| 15 | </thead> |
---|
| 16 | <tbody> |
---|
[4626] | 17 | <tr tal:repeat="account context/values" |
---|
| 18 | tal:attributes="class python: repeat['account'].odd() and 'odd' or 'even'"> |
---|
[4096] | 19 | <td tal:content="account/name">username</td> |
---|
| 20 | <td tal:content="account/title">Title</td> |
---|
| 21 | <td tal:content="account/description">Description</td> |
---|
[4643] | 22 | <td class="text-right"> |
---|
[4110] | 23 | <form method="post"> |
---|
| 24 | <input type="hidden" name="userid" |
---|
[4105] | 25 | tal:attributes="value account/name"/> |
---|
[4110] | 26 | <input type="submit" name="edit" value="edit" /> |
---|
| 27 | <input type="submit" name="delete" value="delete" /> |
---|
| 28 | </form> |
---|
| 29 | </td> |
---|
[4096] | 30 | </tr> |
---|
| 31 | </tbody> |
---|
| 32 | </table> |
---|
Note: See
TracBrowser for help on using the repository browser.