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

Last change on this file since 13131 was 11786, checked in by Henrik Bettermann, 10 years ago

Display info if am checking payment is required to see the course admitted.

File size: 3.6 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<h4 tal:condition="view/show_pastq_pude">
48  Download
49  <a href="https://uniben.waeup.org/downloads/PUDE_past_questions.pdf"
50      i18n:translate="">
51    'PUDE Past Questions'
52  </a>
53   to exercise.
54</h4>
55
56<div class="workflow">
57  <div tal:repeat="msg context/history/messages">
58    <span tal:replace="msg">MESSAGE</span><br />
59  </div>
60</div>
61
62<img src="" height="180px" tal:attributes="src view/passport_url" />
63
64<table i18n:domain="waeup.kofa" class="form-table">
65  <tbody>
66    <tal:widgets content="structure provider:widgets" />
67    <tr tal:condition="view/getCourseAdmitted">
68      <td class="fieldname" i18n:translate="">
69          Admitted Course of Study:
70      </td>
71      <td>
72        <span tal:replace="structure view/getCourseAdmitted" />
73      </td>
74    </tr>
75    <tr tal:condition="view/admission_checking_info">
76      <td class="fieldname" i18n:translate="">
77          Admitted Course of Study:
78      </td>
79      <td>
80        <span class="hint" tal:content="view/admission_checking_info" />
81      </td>
82    </tr>
83    <tr>
84      <td class="fieldname" i18n:translate="">
85          Password:
86      </td>
87      <td>
88          <tal:password replace="view/hasPassword" />
89      </td>
90    <tr>
91  </tbody>
92</table>
93<h3  i18n:domain="waeup.kofa" i18n:translate="">
94    Application Fee Payment Tickets
95</h3>
96<table i18n:domain="waeup.kofa" class="table table-condensed">
97  <thead>
98    <tr>
99      <th i18n:translate="">Payment Id</th>
100      <th i18n:translate="">Creation Date</th>
101      <th i18n:translate="">Payment Date</th>
102      <th i18n:translate="">Category</th>
103      <th i18n:translate="">Item</th>
104      <th i18n:translate="">State</th>
105    </tr>
106  </thead>
107  <tbody>
108    <tr tal:repeat="value context/values">
109      <td> <a tal:attributes="href python:view.url(value)">
110      <span tal:content="value/p_id">PID</span></a></td>
111      <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
112      <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
113      <td tal:content ="value/category">CATEGORY</td>
114      <td tal:content ="value/display_item">ITEM</td>
115      <td tal:content ="value/p_state_title">STATE</td>
116    </tr>
117  </tbody>
118</table>
119<form action="." tal:attributes="action request/URL" method="post"
120      i18n:domain="waeup.kofa">
121  <div tal:condition="view/availableActions">
122    <span tal:repeat="action view/actions"
123          tal:omit-tag="">
124      <input tal:condition="python:action.label in view.display_actions"
125             tal:replace="structure action/render"/>
126    </span>
127  </div>
128</form>
Note: See TracBrowser for help on using the repository browser.