source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/refereereportpage.pt

Last change on this file was 16059, checked in by Henrik Bettermann, 4 years ago

Improve referee reports.

File size: 1.5 KB
Line 
1
2
3<p i18n:domain="waeup.kofa" i18n:translate="referee_welcome">
4  You have been invited to report about
5  <strong i18n:name="app_name" tal:content="context/display_fullname">
6    NAME
7  </strong>
8  who intends to take the degree
9  <strong i18n:name="cert_title" tal:content="python: context.course1.longtitle">
10    CERTIFICATE
11  </strong>
12  in
13  <strong>
14    <span i18n:name="fac_title_title" tal:replace="python: context.course1.__parent__.__parent__.__parent__.longtitle" /> /
15    <span i18n:name="dep_title" tal:replace="python: context.course1.__parent__.__parent__.longtitle" />
16  </strong>
17  of the <span i18n:name="app_title" tal:replace="layout/getAppTitle"></span>.
18</p>
19
20<img tal:condition="python: context.__parent__.with_picture"
21src="" height="180px" tal:attributes="src view/passport_url" />
22
23<br /><br />
24
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.
29</p>
30
31<form action="." tal:attributes="action request/URL" method="post"
32      enctype="multipart/form-data">
33  <input type="hidden" name="mandate_id" tal:attributes="value view/mandate_id" />
34  <table class="form-table">
35    <tbody>
36      <tal:widgets content="structure provider:widgets" />
37    </tbody>
38  </table>
39  <br />
40  <div tal:condition="view/availableActions">
41    <input tal:repeat="action view/actions"
42           tal:replace="structure action/render"
43           />
44  </div>
45</form>
Note: See TracBrowser for help on using the repository browser.