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/documents/PastArts/file.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/documents/PastBio/file.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/documents/PastPSC/file.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/documents/PastSSC/file.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/documents/PastPUDE/file.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 tal:condition="python: context.__parent__.with_picture" |
---|
63 | src="" height="180px" tal:attributes="src view/passport_url" /> |
---|
64 | |
---|
65 | <table i18n:domain="waeup.kofa" class="form-table"> |
---|
66 | <tbody> |
---|
67 | <tal:widgets content="structure provider:widgets" /> |
---|
68 | <tr tal:condition="view/getCourseAdmitted"> |
---|
69 | <td class="fieldname" i18n:translate=""> |
---|
70 | Admitted Course of Study: |
---|
71 | </td> |
---|
72 | <td> |
---|
73 | <span tal:replace="structure view/getCourseAdmitted" /> |
---|
74 | </td> |
---|
75 | </tr> |
---|
76 | <tr> |
---|
77 | <td class="fieldname" i18n:translate=""> |
---|
78 | Password: |
---|
79 | </td> |
---|
80 | <td> |
---|
81 | <tal:password replace="view/hasPassword" /> |
---|
82 | </td> |
---|
83 | <tr> |
---|
84 | </tbody> |
---|
85 | </table> |
---|
86 | <tal:payments condition="view/display_payments"> |
---|
87 | <h3 i18n:domain="waeup.kofa" i18n:translate=""> |
---|
88 | Application Fee Payment Tickets |
---|
89 | </h3> |
---|
90 | <table i18n:domain="waeup.kofa" class="table table-condensed"> |
---|
91 | <thead> |
---|
92 | <tr> |
---|
93 | <th i18n:translate="">Payment Id</th> |
---|
94 | <th i18n:translate="">Creation Date</th> |
---|
95 | <th i18n:translate="">Payment Date</th> |
---|
96 | <th i18n:translate="">Category</th> |
---|
97 | <th i18n:translate="">Item</th> |
---|
98 | <th i18n:translate="">State</th> |
---|
99 | </tr> |
---|
100 | </thead> |
---|
101 | <tbody> |
---|
102 | <tr tal:repeat="value context/payments"> |
---|
103 | <td> <a tal:attributes="href python:view.url(value)"> |
---|
104 | <span tal:content="value/p_id">PID</span></a></td> |
---|
105 | <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td> |
---|
106 | <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td> |
---|
107 | <td tal:content ="value/category">CATEGORY</td> |
---|
108 | <td tal:content ="value/display_item">ITEM</td> |
---|
109 | <td tal:content ="value/p_state_title">STATE</td> |
---|
110 | </tr> |
---|
111 | </tbody> |
---|
112 | </table> |
---|
113 | </tal:payments> |
---|
114 | <form action="." tal:attributes="action request/URL" method="post" |
---|
115 | i18n:domain="waeup.kofa"> |
---|
116 | <div tal:condition="view/availableActions"> |
---|
117 | <span tal:repeat="action view/actions" |
---|
118 | tal:omit-tag=""> |
---|
119 | <input tal:condition="python:action.label in view.display_actions" |
---|
120 | tal:replace="structure action/render"/> |
---|
121 | </span> |
---|
122 | </div> |
---|
123 | </form> |
---|