Changeset 16235 for main/waeup.kofa/trunk/src/waeup/kofa/browser/templates
- Timestamp:
- 14 Sep 2020, 06:28:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/mytranscriptrequests.pt
r16234 r16235 8 8 <th i18n:translate="">Applicant Id</th> 9 9 <th i18n:translate="">Full Name</th> 10 <th i18n:translate="">Course Studied</th> 11 <th i18n:translate="">Submission Date</th> 10 12 </tr> 11 13 </thead> 12 14 <tbody> 13 15 <tr tal:repeat="item view/getApplicants"> 14 <td> <a tal:attributes="href python:view.url(item )">15 <span tal:content=" item/applicant_id">XXXX_1234</span></a>16 <td> <a tal:attributes="href python:view.url(item[0])"> 17 <span tal:content="python:item[0].applicant_id">XXXX_1234</span></a> 16 18 </td> 17 <td tal:content="item/display_fullname">Bob</td> 19 <td tal:content="python:item[0].display_fullname">Bob</td> 20 <td tal:content="python:getattr(item[0].course_studied,'title',None)">Bob</td> 21 <td tal:content="python:item[1]">Bob</td> 18 22 </tr> 19 23 </tbody>
Note: See TracChangeset for help on using the changeset viewer.