source: main/waeup.uniben/trunk/src/waeup/uniben/applicants/browser_templates/applicantdisplaypage.pt @ 10376

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

Move link.

File size: 2.8 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<h4 tal:condition="view/show_pastq_al">
12  Download past questions
13  <a href="https://uniben.waeup.org/downloads/ArtsAndLaw.pdf"
14      i18n:translate="">
15    'Arts And Law'
16  </a>
17   to exercise.
18</h4>
19
20<h4 tal:condition="view/show_pastq_bs">
21  Download past questions
22  <a href="https://uniben.waeup.org/downloads/BiologicalSciences.pdf"
23      i18n:translate="">
24    'Biological Sciences'
25  </a>
26   to exercise.
27</h4>
28
29<h4 tal:condition="view/show_pastq_eps">
30  Download past questions
31  <a href="https://uniben.waeup.org/downloads/EngineeringAndPhysicalSciences.pdf"
32      i18n:translate="">
33    'Engineering And Physical Sciences'
34  </a>
35   to exercise.
36</h4>
37
38<h4 tal:condition="view/show_pastq_mss">
39  Download past questions
40  <a href="https://uniben.waeup.org/downloads/ManagementAndSocialSciences.pdf"
41      i18n:translate="">
42    'Management And Social Sciences'
43  </a>
44   to exercise.
45</h4>
46
47<div class="workflow">
48  <div tal:repeat="msg context/history/messages">
49    <span tal:replace="msg">MESSAGE</span><br />
50  </div>
51</div>
52
53<img src="" height="180px" tal:attributes="src view/passport_url" />
54
55<table i18n:domain="waeup.kofa" class="form-table">
56  <tbody>
57    <tal:widgets content="structure provider:widgets" />
58    <tr tal:condition="view/getCourseAdmitted">
59      <td class="fieldname" i18n:translate="">
60          Admitted Course of Study:
61      </td>
62      <td>
63        <span tal:replace="structure view/getCourseAdmitted" />
64      </td>
65    </tr>
66    <tr>
67      <td class="fieldname" i18n:translate="">
68          Password:
69      </td>
70      <td>
71          <tal:password replace="view/hasPassword" />
72      </td>
73    <tr>
74  </tbody>
75</table>
76<h3  i18n:domain="waeup.kofa" i18n:translate="">
77    Application Fee Payment Tickets
78</h3>
79<table i18n:domain="waeup.kofa">
80  <thead>
81    <tr>
82      <th i18n:translate="">Payment Id</th>
83      <th i18n:translate="">Creation Date</th>
84      <th i18n:translate="">Payment Date</th>
85      <th i18n:translate="">Category</th>
86      <th i18n:translate="">Item</th>
87      <th i18n:translate="">State</th>
88    </tr>
89  </thead>
90  <tbody>
91    <tr tal:repeat="value context/values">
92      <td> <a tal:attributes="href value/__name__">
93      <span tal:content="value/p_id">PID</span></a></td>
94      <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
95      <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
96      <td tal:content ="value/category">CATEGORY</td>
97      <td tal:content ="value/display_item">ITEM</td>
98      <td tal:content ="value/p_state_title">STATE</td>
99    </tr>
100  </tbody>
101</table>
Note: See TracBrowser for help on using the repository browser.