source: main/waeup.futminna/trunk/src/waeup/futminna/applicants/browser_templates/applicantdisplaypage.pt @ 12970

Last change on this file since 12970 was 10393, checked in by Henrik Bettermann, 11 years ago

Application Fee, not Acceptance Fee

File size: 2.1 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 src="" height="180px" tal:attributes="src view/passport_url" />
18
19<table i18n:domain="waeup.kofa" class="form-table">
20  <tbody>
21    <tal:widgets content="structure provider:widgets" />
22    <tr tal:condition="view/getCourseAdmitted">
23      <td class="fieldname" i18n:translate="">
24          Admitted Course of Study:
25      </td>
26      <td>
27        <span tal:replace="structure view/getCourseAdmitted" />
28      </td>
29    </tr>
30    <tr>
31      <td class="fieldname" i18n:translate="">
32          Password:
33      </td>
34      <td>
35          <tal:password replace="view/hasPassword" />
36      </td>
37    <tr>
38    <tr>
39      <td class="fieldname" i18n:translate="">
40        Files:
41      </td>
42      <td>
43        <span tal:replace="structure view/file_links" />
44      </td>
45    </tr>
46  </tbody>
47</table>
48<h3  i18n:domain="waeup.kofa" i18n:translate="">
49    Application Fee Payment Tickets
50</h3>
51<table i18n:domain="waeup.kofa">
52  <thead>
53    <tr>
54      <th i18n:translate="">Payment Id</th>
55      <th i18n:translate="">Creation Date</th>
56      <th i18n:translate="">Payment Date</th>
57      <th i18n:translate="">Category</th>
58      <th i18n:translate="">Item</th>
59      <th i18n:translate="">State</th>
60    </tr>
61  </thead>
62  <tbody>
63    <tr tal:repeat="value context/values">
64      <td> <a tal:attributes="href value/__name__">
65      <span tal:content="value/p_id">PID</span></a></td>
66      <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
67      <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
68      <td tal:content ="value/category">CATEGORY</td>
69      <td tal:content ="value/display_item">ITEM</td>
70      <td tal:content ="value/p_state_title">STATE</td>
71    </tr>
72  </tbody>
73</table>
Note: See TracBrowser for help on using the repository browser.