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/students/browser_templates/studycoursemanagepage.pt

    r11026 r11037  
    3434    <div id="tab2" class="tab-pane">
    3535      <br />
    36       <table class="dataTableManage">
    37         <thead>
    38           <tr>
    39             <th>&nbsp;</th>
    40             <th i18n:translate="">Level Code</th>
    41             <th i18n:translate="">Level Title</th>
    42           </tr>
    43         </thead>
    44         <tbody>
    45           <tr tal:repeat="cl context/values">
    46              <td>
    47               <input type="checkbox"
    48                          name="val_id"
    49                          tal:attributes="value cl/__name__" />
    50             </td>
    51             <td> <a tal:attributes="href python:view.url(cl)">
    52               <span tal:content="cl/level">CODE</span></a>
    53             </td>
    54             <td>
    55               <span tal:content="cl/level_title">TITLE</span>
    56             </td>
    57           </tr>
    58         </tbody>
    59       </table>
     36      <div class="table-responsive">
     37        <table class="dataTableManage">
     38          <thead>
     39            <tr>
     40              <th>&nbsp;</th>
     41              <th i18n:translate="">Level Code</th>
     42              <th i18n:translate="">Level Title</th>
     43            </tr>
     44          </thead>
     45          <tbody>
     46            <tr tal:repeat="cl context/values">
     47               <td>
     48                <input type="checkbox"
     49                         name="val_id"
     50                         tal:attributes="value cl/__name__" />
     51              </td>
     52              <td> <a tal:attributes="href python:view.url(cl)">
     53                <span tal:content="cl/level">CODE</span></a>
     54              </td>
     55              <td>
     56                <span tal:content="cl/level_title">TITLE</span>
     57              </td>
     58            </tr>
     59          </tbody>
     60        </table>
     61      </div>
    6062
    6163      <div tal:condition="view/availableActions">
Note: See TracChangeset for help on using the changeset viewer.