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

Last change on this file was 16674, checked in by Henrik Bettermann, 3 years ago

Show additional files.

File size: 3.8 KB
RevLine 
[10375]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
[16582]13  <a href="https://waeup.uniben.edu/documents/PastArts/file.pdf"
[10375]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
[16582]22  <a href="https://waeup.uniben.edu/documents/PastBio/file.pdf"
[10375]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
[16582]31  <a href="https://waeup.uniben.edu/documents/PastPSC/file.pdf"
[10375]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
[16582]40  <a href="https://waeup.uniben.edu/documents/PastSSC/file.pdf"
[10375]41      i18n:translate="">
42    'Management And Social Sciences'
43  </a>
44   to exercise.
45</h4>
46
[10622]47<h4 tal:condition="view/show_pastq_pude">
48  Download
[16582]49  <a href="https://waeup.uniben.edu/documents/PastPUDE/file.pdf"
[10622]50      i18n:translate="">
51    'PUDE Past Questions'
52  </a>
53   to exercise.
54</h4>
55
[10376]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
[15504]62<img tal:condition="python: context.__parent__.with_picture"
63     src="" height="180px" tal:attributes="src view/passport_url" />
[10376]64
[10375]65<table i18n:domain="waeup.kofa" class="form-table">
66  <tbody>
[16674]67    <tal:files condition="view/file_links">
68      <tr>
69        <td class="separator" colspan=2>
70          Files
71        </td>
72      </tr>
73      <tr>
74        <td colspan=2>
75          <span tal:replace="structure view/file_links" />
76        </td>
77      </tr>
78    </tal:files>
[10375]79    <tal:widgets content="structure provider:widgets" />
80    <tr tal:condition="view/getCourseAdmitted">
81      <td class="fieldname" i18n:translate="">
82          Admitted Course of Study:
83      </td>
84      <td>
85        <span tal:replace="structure view/getCourseAdmitted" />
86      </td>
87    </tr>
88    <tr>
89      <td class="fieldname" i18n:translate="">
90          Password:
91      </td>
92      <td>
93          <tal:password replace="view/hasPassword" />
94      </td>
95    <tr>
96  </tbody>
97</table>
[14139]98<tal:payments condition="view/display_payments">
99  <h3  i18n:domain="waeup.kofa" i18n:translate="">
100      Application Fee Payment Tickets
101  </h3>
102  <table i18n:domain="waeup.kofa" class="table table-condensed">
103    <thead>
104      <tr>
105        <th i18n:translate="">Payment Id</th>
106        <th i18n:translate="">Creation Date</th>
107        <th i18n:translate="">Payment Date</th>
108        <th i18n:translate="">Category</th>
109        <th i18n:translate="">Item</th>
110        <th i18n:translate="">State</th>
111      </tr>
112    </thead>
113    <tbody>
114      <tr tal:repeat="value context/payments">
115        <td> <a tal:attributes="href python:view.url(value)">
116        <span tal:content="value/p_id">PID</span></a></td>
117        <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
118        <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
119        <td tal:content ="value/category">CATEGORY</td>
120        <td tal:content ="value/display_item">ITEM</td>
121        <td tal:content ="value/p_state_title">STATE</td>
122      </tr>
123    </tbody>
124  </table>
125</tal:payments>
[11784]126<form action="." tal:attributes="action request/URL" method="post"
127      i18n:domain="waeup.kofa">
128  <div tal:condition="view/availableActions">
129    <span tal:repeat="action view/actions"
130          tal:omit-tag="">
131      <input tal:condition="python:action.label in view.display_actions"
132             tal:replace="structure action/render"/>
133    </span>
134  </div>
135</form>
Note: See TracBrowser for help on using the repository browser.