- Timestamp:
- 6 Feb 2014, 12:32:44 (11 years ago)
- Location:
- main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates/applicantsrootpage.pt
r11010 r11060 14 14 </thead> 15 15 <tbody> 16 <tr tal:repeat="entry view/containers" class="gradeC">16 <tr tal:repeat="entry view/containers"> 17 17 <td tal:content="entry/year">Year 18 18 </td> -
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/applicants/browser_templates/applicantssearchpage.pt
r11051 r11060 1 <form method="POST" i18n:domain="waeup.kofa" >1 <form method="POST" i18n:domain="waeup.kofa" class="form-inline"> 2 2 <br /> 3 <input class="btn primary" type="submit" name="search" 4 tal:attributes="value view/search_button" /> 3 <div class="form-group"> 4 <input class="btn btn-primary" type="submit" name="search" 5 tal:attributes="value view/search_button" /> 6 </div> 7 <div class="form-group"> 8 <select name="searchtype" class="form-control"> 9 <option i18n:translate="" value="applicant_id">with id</option> 10 <option i18n:translate="" value="fullname">with name</option> 11 <option i18n:translate="" value="reg_number">with registration number</option> 12 <option i18n:translate="" value="email">with email address</option> 13 </select> 14 </div> 15 <div class="form-group"> 16 <input type="text" class="form-control" name="searchterm" /> 17 </div> 5 18 6 <select name="searchtype" class="form-control"> 7 <option i18n:translate="" value="applicant_id">with id</option> 8 <option i18n:translate="" value="fullname">with name</option> 9 <option i18n:translate="" value="reg_number">with registration number</option> 10 <option i18n:translate="" value="email">with email address</option> 11 </select> 12 13 <input type="text" name="searchterm" /> 14 15 <p> </p> 19 <br /><br /> 16 20 <div tal:condition="view/results"> 17 21 <h3 i18n:translate="">Search Results</h3> … … 30 34 </thead> 31 35 <tbody> 32 <tr tal:repeat="item view/results" class="gradeC">36 <tr tal:repeat="item view/results"> 33 37 <td> <a tal:attributes="href python:view.url(item)"> 34 38 <span tal:content="item/applicant_id">XXXX_1234</span></a>
Note: See TracChangeset for help on using the changeset viewer.