source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/userscontainerpage.pt @ 11040

Last change on this file since 11040 was 11040, checked in by Henrik Bettermann, 11 years ago

Remove rapping element <div class="table-responsive"> again and apply Diazo rule instead.

File size: 1.1 KB
Line 
1<table i18n:domain="waeup.kofa" class="table table-striped dataTable">
2  <thead>
3    <tr>
4      <th i18n:translate="">Id</th>
5      <th i18n:translate="">Name</th>
6      <th i18n:translate="">Portal Roles</th>
7      <th i18n:translate="">Local Roles</th>
8      <th></th>
9    </tr>
10  </thead>
11  <tbody>
12    <tr tal:repeat="account context/values">
13      <td tal:content="account/name">USERNAME</td>
14      <td tal:content="account/title">TITLE</td>
15      <td nowrap tal:content="structure python:view.getSiteRoles(account)">SITE ROLES</td>
16      <td tal:content="structure python:view.getLocalRoles(account)">LOCAL ROLES</td>
17      <td class="text-right">
18        <form method="post">
19          <input type="hidden" name="userid"
20           tal:attributes="value account/name"/>
21            <input class="btn btn-sm btn-primary" type="submit" name="manage"
22              tal:attributes="value view/manage_button" />
23            <input class="btn btn-sm btn-default" type="submit" name="delete"
24              tal:attributes="value view/delete_button" />
25        </form>
26      </td>
27    </tr>
28  </tbody>
29</table>
Note: See TracBrowser for help on using the repository browser.