Ignore:
Timestamp:
30 Jan 2014, 13:59:56 (11 years ago)
Author:
Henrik Bettermann
Message:

More adjustments in applicants module.

File:
1 edited

Legend:

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

    r10353 r11011  
    3838        <td class="fieldname" i18n:translate="">Password:</td>
    3939        <td>
    40           <input name="password" type="password"  />
     40          <input class="form-control" name="password" type="password"  />
    4141        </td>
    4242      </tr>
     
    4444        <td class="fieldname" i18n:translate="">Retype Password:</td>
    4545        <td>
    46           <input name="control_password" type="password" />
     46          <input class="form-control" name="control_password" type="password" />
    4747        </td>
    4848      </tr>
     
    8484  </h3>
    8585
    86   <table>
    87     <thead>
    88     <tr>
    89       <th>&nbsp;</th>
    90       <th i18n:translate="">Payment Id</th>
    91       <th i18n:translate="">Creation Date</th>
    92       <th i18n:translate="">Payment Date</th>
    93       <th i18n:translate="">Category</th>
    94       <th i18n:translate="">Item</th>
    95       <th i18n:translate="">State</th>
    96     </tr>
    97     </thead>
    98     <tbody>
    99       <tr tal:repeat="cl context/values">
    100          <td>
    101           <input type="checkbox"
    102                  name="val_id"
    103                  tal:attributes="value cl/__name__"
    104          tal:condition="python: not view.unremovable(cl)" />
    105         </td>
    106         <td> <a tal:attributes="href cl/__name__">
    107         <span tal:content="cl/p_id">PID</span></a></td>
    108         <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td>
    109         <td tal:content="python: layout.formatDatetime(cl.payment_date)">PAYMENT DATE</td>
    110       <td tal:content ="cl/category">CATEGORY</td>
    111       <td tal:content ="cl/display_item">ITEM</td>
    112       <td tal:content ="cl/p_state_title">STATE</td>
     86  <div class="table-responsive">
     87    <table i18n:domain="waeup.kofa" class="table table-condensed">
     88      <thead>
     89      <tr>
     90        <th>&nbsp;</th>
     91        <th i18n:translate="">Payment Id</th>
     92        <th i18n:translate="">Creation Date</th>
     93        <th i18n:translate="">Payment Date</th>
     94        <th i18n:translate="">Category</th>
     95        <th i18n:translate="">Item</th>
     96        <th i18n:translate="">State</th>
    11397      </tr>
    114     </tbody>
    115   </table>
     98      </thead>
     99      <tbody>
     100        <tr tal:repeat="cl context/values">
     101           <td>
     102            <input type="checkbox"
     103                 name="val_id"
     104                 tal:attributes="value cl/__name__"
     105           tal:condition="python: not view.unremovable(cl)" />
     106          </td>
     107          <td> <a tal:attributes="href cl/__name__">
     108          <span tal:content="cl/p_id">PID</span></a></td>
     109          <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td>
     110          <td tal:content="python: layout.formatDatetime(cl.payment_date)">PAYMENT DATE</td>
     111        <td tal:content ="cl/category">CATEGORY</td>
     112        <td tal:content ="cl/display_item">ITEM</td>
     113        <td tal:content ="cl/p_state_title">STATE</td>
     114        </tr>
     115      </tbody>
     116    </table>
     117  </div>
    116118
    117119  <div tal:condition="view/availableActions">
Note: See TracChangeset for help on using the changeset viewer.