- Timestamp:
- 13 Sep 2011, 16:21:44 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/containerpage.pt
r6695 r6750 23 23 <table class="display dataTableManage"> 24 24 <thead> 25 <tr> 26 <th>Student Id</th><th>Name</th> 27 </tr> 25 <tr> 26 <th>Student Id</th> 27 <th>Registration Number</th> 28 <th>Matriculation Number</th> 29 <th>Name</th> 30 </tr> 28 31 </thead> 29 32 <tbody> 30 31 33 <tr tal:repeat="item view/hitlist"> 34 <td> <a tal:attributes="href item/url"> 32 35 <span tal:content="item/student_id">A123456</span></a> 33 36 </td> 34 <td tal:content="item/name">Bob</td> 35 </tr> 37 <td> <a tal:attributes="href item/url"> 38 <span tal:content="item/reg_number">9999999</span></a> 39 </td> 40 <td> <a tal:attributes="href item/url"> 41 <span tal:content="item/matric_number">9999999</span></a> 42 </td> 43 <td tal:content="item/name">Bob</td> 44 </tr> 36 45 </tbody> 37 46 </table>
Note: See TracChangeset for help on using the changeset viewer.