source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicantdisplaypage.pt @ 15113

Last change on this file since 15113 was 15113, checked in by Henrik Bettermann, 6 years ago

Implement the upload of pdf files in application section.

File size: 2.3 KB
Line 
1<h2 i18n:domain="waeup.kofa">
2  ...
3  <span tal:replace="context/translated_state">APPLICATIONSTATE
4  </span>
5  <span tal:omit-tag=""
6    i18n:translate="" tal:condition="context/suspended">(account suspended)
7  </span>
8  ...
9</h2>
10
11<div class="workflow">
12  <div tal:repeat="msg context/history/messages">
13    <span tal:replace="msg">MESSAGE</span><br />
14  </div>
15</div>
16
17<img  tal:condition="python: not view.target in ('trans', 'cert')"
18      src="" height="180px" tal:attributes="src view/passport_url" />
19
20<table i18n:domain="waeup.kofa" class="form-table">
21  <tbody>
22    <tal:widgets content="structure provider:widgets" />
23    <tr tal:condition="view/getCourseAdmitted">
24      <td class="fieldname" i18n:translate="">
25          Admitted Course of Study:
26      </td>
27      <td>
28        <span tal:replace="structure view/getCourseAdmitted" />
29      </td>
30    </tr>
31    <tr>
32      <td class="fieldname" i18n:translate="">
33          Password:
34      </td>
35      <td>
36          <tal:password replace="view/hasPassword" />
37      </td>
38    <tr>
39    <tr tal:condition="python: view.target in ('trans',)">
40      <td class="fieldname" i18n:translate="">
41        Files:
42      </td>
43      <td>
44        <span tal:replace="structure view/file_links" />
45      </td>
46    </tr>
47  </tbody>
48</table>
49<tal:payments condition="view/display_payments">
50  <h3 i18n:domain="waeup.kofa" i18n:translate="">
51      Payment Tickets
52  </h3>
53  <table i18n:domain="waeup.kofa" class="table table-condensed">
54    <thead>
55      <tr>
56        <th i18n:translate="">Payment Id</th>
57        <th i18n:translate="">Creation Date</th>
58        <th i18n:translate="">Payment Date</th>
59        <th i18n:translate="">Category</th>
60        <th i18n:translate="">Item</th>
61        <th i18n:translate="">State</th>
62      </tr>
63    </thead>
64    <tbody>
65      <tr tal:repeat="value context/payments">
66        <td> <a tal:attributes="href python:view.url(value)">
67        <span tal:content="value/p_id">PID</span></a></td>
68        <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
69        <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
70        <td tal:content ="value/category">CATEGORY</td>
71        <td tal:content ="value/display_item">ITEM</td>
72        <td tal:content ="value/p_state_title">STATE</td>
73      </tr>
74    </tbody>
75  </table>
76</tal:payments>
Note: See TracBrowser for help on using the repository browser.