- Timestamp:
- 29 Jan 2014, 15:26:54 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/students/browser_templates/containerpage.pt
r10988 r11003 26 26 </div> 27 27 </form> 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 28 <p> </p> 29 <div tal:condition="view/hitlist"> 30 <h3 i18n:translate="">Search Results</h3> 31 <input type="hidden" name="old_searchterm" 32 tal:attributes="value view/searchterm" /> 33 <input type="hidden" name="old_searchtype" 34 tal:attributes="value view/searchtype" /> 35 <table class="table table-striped dataTable"> 36 <thead> 37 <tr> 38 <th i18n:translate="">Student Id</th> 39 <th i18n:translate="">Reg. Number</th> 40 <th i18n:translate="">Matric. Number</th> 41 <th i18n:translate="">State</th> 42 <th i18n:translate="">Full Name</th> 43 </tr> 44 </thead> 45 <tbody> 46 <tr tal:repeat="item view/hitlist"> 47 <td> <a tal:attributes="href item/url"> 48 <span tal:content="item/student_id">A123456</span></a> 49 </td> 50 <td class="center"> <a tal:attributes="href item/url"> 51 <span tal:content="item/reg_number">9999999</span></a> 52 </td> 53 <td class="center"> <a tal:attributes="href item/url"> 54 <span tal:content="item/matric_number">9999999</span></a> 55 </td> 56 <td tal:content="item/state">admitted</td> 57 <td tal:content="item/display_fullname">Bob</td> 58 </tr> 59 </tbody> 60 </table> 61 <br /> 62 </div> 63 63
Note: See TracChangeset for help on using the changeset viewer.