Ignore:
Timestamp:
3 Feb 2014, 06:56:27 (11 years ago)
Author:
Henrik Bettermann
Message:

Put all data tables into a <div class="table-responsive"> element.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/facultymanagepage.pt

    r11026 r11037  
    6464    </div>
    6565    <div id="tab3" class="tab-pane"> <br />
    66       <table class="dataTableManage">
    67         <thead>
    68           <tr>
    69             <th>&nbsp;
    70             </th>
    71             <th i18n:translate="">User Id
    72             </th>
    73             <th i18n:translate="">Name
    74             </th>
    75             <th i18n:translate="">Local Role
    76             </th>
    77           </tr>
    78         </thead>
    79         <tbody>
    80           <tr tal:repeat="entry view/getUsersWithLocalRoles">
    81             <td>
    82               <input type="checkbox" name="role_id"
    83               tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" /> </td>
    84             <td tal:content="entry/user_name"> USERNAME </td>
    85             <td tal:content="entry/user_title"> USERTITLE </td>
    86             <td tal:content="entry/local_role_title"> LOCAL ROLE </td>
    87           </tr>
    88         </tbody>
    89       </table>
     66      <div class="table-responsive">
     67        <table class="dataTableManage">
     68          <thead>
     69            <tr>
     70              <th>&nbsp;
     71              </th>
     72              <th i18n:translate="">User Id
     73              </th>
     74              <th i18n:translate="">Name
     75              </th>
     76              <th i18n:translate="">Local Role
     77              </th>
     78            </tr>
     79          </thead>
     80          <tbody>
     81            <tr tal:repeat="entry view/getUsersWithLocalRoles">
     82              <td>
     83                <input type="checkbox" name="role_id"
     84                tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" /> </td>
     85              <td tal:content="entry/user_name"> USERNAME </td>
     86              <td tal:content="entry/user_title"> USERTITLE </td>
     87              <td tal:content="entry/local_role_title"> LOCAL ROLE </td>
     88            </tr>
     89          </tbody>
     90        </table>
     91      </div>
    9092      <div tal:condition="view/availableActions">
    9193        <span tal:repeat="action view/actions" tal:omit-tag="">
Note: See TracChangeset for help on using the changeset viewer.