Ignore:
Timestamp:
20 Apr 2020, 06:30:54 (5 years ago)
Author:
Henrik Bettermann
Message:

Improve referee reports.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt

    r15946 r16059  
    5151  </tbody>
    5252</table>
     53
     54<tal:refereereports condition="view/display_refereereports">
     55  <br /><br />
     56  <h3 i18n:translate="">
     57      Referee Reports
     58  </h3>
     59  <table i18n:domain="waeup.kofa" class="table table-condensed">
     60    <thead>
     61    <tr>
     62      <th i18n:translate="">Report Id</th>
     63      <th i18n:translate="">Creation Date</th>
     64      <th i18n:translate="">Referee</th>
     65      <th i18n:translate="">Email Address</th>
     66    </tr>
     67    </thead>
     68    <tbody>
     69      <tr tal:repeat="cl context/refereereports">
     70        <td> <a tal:attributes="href python:view.url(cl)">
     71          <span tal:content="cl/r_id">RID</span></a></td>
     72        <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td>
     73        <td tal:content="cl/name">REFEREE</td>
     74        <td tal:content="cl/email">EMAIL</td>
     75      </tr>
     76    </tbody>
     77  </table>
     78</tal:refereereports>
     79
    5380<tal:payments condition="view/display_payments">
    5481  <h3 i18n:domain="waeup.kofa" i18n:translate="">
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/refereereportpage.pt

    r16058 r16059  
     1
     2
    13<p i18n:domain="waeup.kofa" i18n:translate="referee_welcome">
    24  You have been invited to report about
     
    1416  </strong>
    1517  of the <span i18n:name="app_title" tal:replace="layout/getAppTitle"></span>.
    16  
    17   <br /><br />
     18</p>
    1819
    19   <img tal:condition="python: context.__parent__.with_picture"
    20        src="" height="180px" tal:attributes="src view/passport_url" />
     20<img tal:condition="python: context.__parent__.with_picture"
     21src="" height="180px" tal:attributes="src view/passport_url" />
    2122
    22   <br /><br />
     23<br /><br />
    2324
    24   Please fill and submit the following referee report form. After submission
    25   the form will be locked. You can neither view nor edit
    26   your report after submission.
     25<p i18n:translate="">
     26Please fill and submit the following referee report form.
     27After submission the form will be locked and a report pdf
     28file will be available for download.
    2729</p>
    2830
Note: See TracChangeset for help on using the changeset viewer.