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.

Location:
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt

    r11026 r11037  
    3737    <tal:showApplicants  condition="view/showApplicants">
    3838      <br />
    39       <table class="dataTableManage">
    40         <thead>
    41           <tr>
    42             <th>&nbsp;
    43             </th>
    44             <th i18n:translate="">Application Number
    45             </th>
    46             <th i18n:translate="">Full Name
    47             </th>
    48             <th i18n:translate="">First Choice
    49             </th>
    50             <th i18n:translate="">Application State
    51             </th>
    52           </tr>
    53         </thead>
    54         <tbody>
    55           <tr tal:repeat="appl context/values">
    56             <td>
    57               <input type="checkbox" name="val_id" tal:attributes="value appl/__name__" />
    58             </td>
    59             <td>
    60               <a tal:attributes="href python: view.url(appl)"
    61                  tal:content="appl/__name__">NUMBER</a>
    62             </td>
    63             <td>
    64               <span tal:replace="appl/display_fullname">FULLNAME
    65               </span>
    66             </td>
    67             <td>
    68               <span tal:replace="appl/course1/code|nothing">FIRSTCHOICE
    69               </span>
    70             </td>
    71             <td>
    72               <span tal:replace="appl/translated_state">STATE
    73               </span>
    74             </td>
    75           </tr>
    76         </tbody>
    77       </table>
     39      <div class="table-responsive">
     40        <table class="dataTableManage">
     41          <thead>
     42            <tr>
     43              <th>&nbsp;
     44              </th>
     45              <th i18n:translate="">Application Number
     46              </th>
     47              <th i18n:translate="">Full Name
     48              </th>
     49              <th i18n:translate="">First Choice
     50              </th>
     51              <th i18n:translate="">Application State
     52              </th>
     53            </tr>
     54          </thead>
     55          <tbody>
     56            <tr tal:repeat="appl context/values">
     57              <td>
     58                <input type="checkbox" name="val_id" tal:attributes="value appl/__name__" />
     59              </td>
     60              <td>
     61                <a tal:attributes="href python: view.url(appl)"
     62                   tal:content="appl/__name__">NUMBER</a>
     63              </td>
     64              <td>
     65                <span tal:replace="appl/display_fullname">FULLNAME
     66                </span>
     67              </td>
     68              <td>
     69                <span tal:replace="appl/course1/code|nothing">FIRSTCHOICE
     70                </span>
     71              </td>
     72              <td>
     73                <span tal:replace="appl/translated_state">STATE
     74                </span>
     75              </td>
     76            </tr>
     77          </tbody>
     78        </table>
     79      </div>
    7880      <input type="checkbox" onClick="toggle(this, 'val_id')" />
    7981      <span  i18n:translate="">Select all</span>
     
    102104    </div>
    103105    <div id="tab3" class="tab-pane"> <br />
    104       <table class="dataTableManage">
    105         <thead>
    106           <tr>
    107             <th>&nbsp;
    108             </th>
    109             <th i18n:translate="">User Id
    110             </th>
    111             <th i18n:translate="">Name
    112             </th>
    113             <th i18n:translate="">Local Role
    114             </th>
    115           </tr>
    116         </thead>
    117         <tbody>
    118           <tr tal:repeat="entry view/getUsersWithLocalRoles"> <td>
    119               <input type="checkbox" name="role_id"
    120                 tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" /> </td>
    121             <td tal:content="entry/user_name"> USERNAME  </td>
    122             <td tal:content="entry/user_title"> USERTITLE  </td>
    123             <td tal:content="entry/local_role_title"> LOCAL ROLE  </td>
    124           </tr>
    125         </tbody>
    126       </table>
     106      <div class="table-responsive">
     107        <table class="dataTableManage">
     108          <thead>
     109            <tr>
     110              <th>&nbsp;
     111              </th>
     112              <th i18n:translate="">User Id
     113              </th>
     114              <th i18n:translate="">Name
     115              </th>
     116              <th i18n:translate="">Local Role
     117              </th>
     118            </tr>
     119          </thead>
     120          <tbody>
     121            <tr tal:repeat="entry view/getUsersWithLocalRoles"> <td>
     122                <input type="checkbox" name="role_id"
     123                  tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" /> </td>
     124              <td tal:content="entry/user_name"> USERNAME  </td>
     125              <td tal:content="entry/user_title"> USERTITLE  </td>
     126              <td tal:content="entry/local_role_title"> LOCAL ROLE  </td>
     127            </tr>
     128          </tbody>
     129        </table>
     130      </div>
    127131      <div tal:condition="view/availableActions">
    128132        <span tal:repeat="action view/actions" tal:omit-tag="">
  • main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt

    r11026 r11037  
    4141        Please be patient until all records have been loaded.
    4242      </p>
    43       <table class="dataTableManage">
    44         <thead>
    45           <tr>
    46             <th>&nbsp;
    47             </th>
    48             <th i18n:translate="">Year
    49             </th>
    50             <th i18n:translate="">Code
    51             </th>
    52             <th i18n:translate="">Title
    53             </th>
    54             <th i18n:translate="">Records
    55             </th>
    56           </tr>
    57         </thead>
    58         <tbody>
    59           <tr tal:repeat="entry context/values"> <td>
    60               <input type="checkbox" name="val_id"
    61                 tal:attributes="value entry/__name__" /> </td>
    62             <td tal:content="entry/year">YEAR</td> <td>
    63               <a href=""
    64                 tal:attributes="href python:view.url(entry) + '/manage'"
    65                 tal:content="entry/__name__">CODE</a> </td>
    66             <td tal:content="entry/title">TITLE</td>
    67             <td tal:content="python:len(entry)">YEAR</td>
    68           </tr>
    69         </tbody>
    70       </table>
     43      <div class="table-responsive">
     44        <table class="dataTableManage">
     45          <thead>
     46            <tr>
     47              <th>&nbsp;
     48              </th>
     49              <th i18n:translate="">Year
     50              </th>
     51              <th i18n:translate="">Code
     52              </th>
     53              <th i18n:translate="">Title
     54              </th>
     55              <th i18n:translate="">Records
     56              </th>
     57            </tr>
     58          </thead>
     59          <tbody>
     60            <tr tal:repeat="entry context/values"> <td>
     61                <input type="checkbox" name="val_id"
     62                  tal:attributes="value entry/__name__" /> </td>
     63              <td tal:content="entry/year">YEAR</td> <td>
     64                <a href=""
     65                  tal:attributes="href python:view.url(entry) + '/manage'"
     66                  tal:content="entry/__name__">CODE</a> </td>
     67              <td tal:content="entry/title">TITLE</td>
     68              <td tal:content="python:len(entry)">YEAR</td>
     69            </tr>
     70          </tbody>
     71        </table>
     72      </div>
    7173      <div tal:condition="view/availableActions">
    7274        <span tal:repeat="action view/actions" tal:omit-tag="">
     
    7880    <div id="tab3" class="tab-pane">
    7981      <br />
    80       <table class="dataTableManage">
    81         <thead>
    82           <tr>
    83             <th>&nbsp;
    84             </th>
    85             <th i18n:translate="">User Id
    86             </th>
    87             <th i18n:translate="">Name
    88             </th>
    89             <th i18n:translate="">Local Role
    90             </th>
    91           </tr>
    92         </thead>
    93         <tbody>
    94           <tr tal:repeat="entry view/getUsersWithLocalRoles">
    95             <td> <input type="checkbox" name="role_id"
    96                     tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" />  </td>
    97             <td tal:content="entry/user_name">USERNAME</td>
    98             <td tal:content="entry/user_title">USERTITLE</td>
    99             <td tal:content="entry/local_role_title">LOCAL ROLE</td>
    100           </tr>
    101         </tbody>
    102       </table>
     82      <div class="table-responsive">
     83        <table class="dataTableManage">
     84          <thead>
     85            <tr>
     86              <th>&nbsp;
     87              </th>
     88              <th i18n:translate="">User Id
     89              </th>
     90              <th i18n:translate="">Name
     91              </th>
     92              <th i18n:translate="">Local Role
     93              </th>
     94            </tr>
     95          </thead>
     96          <tbody>
     97            <tr tal:repeat="entry view/getUsersWithLocalRoles">
     98              <td> <input type="checkbox" name="role_id"
     99                      tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" />  </td>
     100              <td tal:content="entry/user_name">USERNAME</td>
     101              <td tal:content="entry/user_title">USERTITLE</td>
     102              <td tal:content="entry/local_role_title">LOCAL ROLE</td>
     103            </tr>
     104          </tbody>
     105        </table>
     106      </div>
    103107      <div tal:condition="view/availableActions">
    104108        <span tal:repeat="action view/actions" tal:omit-tag="">
  • main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates/applicantssearchpage.pt

    r11026 r11037  
    2020    <input type="hidden" name="old_searchtype"
    2121         tal:attributes="value view/searchtype" />
    22     <table class="display dataTable">
    23       <thead>
    24       <tr>
    25         <th i18n:translate="">Applicant Id</th>
    26         <th i18n:translate="">Reg. Number</th>
    27         <th i18n:translate="">Application State</th>
    28         <th i18n:translate="">Full Name</th>
    29       </tr>
    30       </thead>
    31       <tbody>
    32       <tr tal:repeat="item view/results" class="gradeC">
    33         <td> <a tal:attributes="href python:view.url(item)">
    34           <span tal:content="item/applicant_id">XXXX_1234</span></a>
    35         </td>
    36         <td class="center">
    37           <span tal:content="item/reg_number">9999999</span>
    38         </td>
    39         <td tal:content="item/state">admitted</td>
    40         <td tal:content="item/display_fullname">Bob</td>
    41       </tr>
    42       </tbody>
    43     </table>
    44     <br />
     22    <div class="table-responsive">
     23      <table class="display dataTable">
     24        <thead>
     25        <tr>
     26          <th i18n:translate="">Applicant Id</th>
     27          <th i18n:translate="">Reg. Number</th>
     28          <th i18n:translate="">Application State</th>
     29          <th i18n:translate="">Full Name</th>
     30        </tr>
     31        </thead>
     32        <tbody>
     33        <tr tal:repeat="item view/results" class="gradeC">
     34          <td> <a tal:attributes="href python:view.url(item)">
     35            <span tal:content="item/applicant_id">XXXX_1234</span></a>
     36          </td>
     37          <td class="center">
     38            <span tal:content="item/reg_number">9999999</span>
     39          </td>
     40          <td tal:content="item/state">admitted</td>
     41          <td tal:content="item/display_fullname">Bob</td>
     42        </tr>
     43        </tbody>
     44      </table>
     45    </div>
    4546  </div>
    4647</form>
Note: See TracChangeset for help on using the changeset viewer.