Ignore:
Timestamp:
14 Sep 2020, 06:28:19 (5 years ago)
Author:
Henrik Bettermann
Message:

Improve transcript application record listing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/mytranscriptrequests.pt

    r16234 r16235  
    88    <th i18n:translate="">Applicant Id</th>
    99    <th i18n:translate="">Full Name</th>
     10    <th i18n:translate="">Course Studied</th>
     11    <th i18n:translate="">Submission Date</th>
    1012  </tr>
    1113  </thead>
    1214  <tbody>
    1315  <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>
    1618    </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>
    1822  </tr>
    1923  </tbody>
Note: See TracChangeset for help on using the changeset viewer.