1 | <form action="." tal:attributes="action request/URL" method="post" |
---|
2 | i18n:domain="waeup.kofa" enctype="multipart/form-data" |
---|
3 | autocomplete="off"> |
---|
4 | |
---|
5 | <h2 i18n:domain="waeup.kofa"> |
---|
6 | ... |
---|
7 | <span tal:replace="context/translated_state">APPLICATIONSTATE |
---|
8 | </span> |
---|
9 | <span tal:omit-tag="" |
---|
10 | i18n:translate="" tal:condition="context/suspended">(account suspended) |
---|
11 | </span> |
---|
12 | ... |
---|
13 | </h2> |
---|
14 | |
---|
15 | <div class="workflow"> |
---|
16 | <div tal:repeat="msg context/history/messages"> |
---|
17 | <span tal:replace="msg">MESSAGE</span><br /> |
---|
18 | </div> |
---|
19 | </div> |
---|
20 | |
---|
21 | <table class="form-table"> |
---|
22 | <tbody> |
---|
23 | <tal:widgets content="structure provider:widgets" /> |
---|
24 | <tr> |
---|
25 | <td class="fieldname" i18n:translate=""> |
---|
26 | Passport Photo: |
---|
27 | </td> |
---|
28 | <td> |
---|
29 | <img src="passport.jpg" height="180px" /><br /> |
---|
30 | <br /> |
---|
31 | <div class="input-group half"> |
---|
32 | <div class="input-group-btn"> |
---|
33 | <div class="btn btn-default btn-file"> |
---|
34 | Select… |
---|
35 | <input type="file" name="form.passport" /> |
---|
36 | </div> |
---|
37 | </div> |
---|
38 | <input type="text" class="form-control" readonly> |
---|
39 | </div> |
---|
40 | <span i18n:translate=""> |
---|
41 | Max. file size: |
---|
42 | </span> |
---|
43 | <span tal:replace="view/max_upload_size">10 KB</span> |
---|
44 | </tr> |
---|
45 | <tr tal:condition="view/manage_applications"> |
---|
46 | <td class="fieldname" i18n:translate="">Password:</td> |
---|
47 | <td> |
---|
48 | <input class="form-control" name="password" type="password" /> |
---|
49 | </td> |
---|
50 | </tr> |
---|
51 | <tr tal:condition="view/manage_applications"> |
---|
52 | <td class="fieldname" i18n:translate="">Retype Password:</td> |
---|
53 | <td> |
---|
54 | <input class="form-control" name="control_password" type="password" /> |
---|
55 | </td> |
---|
56 | </tr> |
---|
57 | <tr tal:condition="view/manage_applications"> |
---|
58 | <td class="fieldname" i18n:translate="">Application Transition:</td> |
---|
59 | <td> |
---|
60 | <select id="transition" name="transition" class="form-control half"> |
---|
61 | <option tal:repeat="transition view/getTransitions" |
---|
62 | tal:attributes="value transition/name"> |
---|
63 | <span tal:replace="transition/title">TRANSITIONTITLE</span> |
---|
64 | </option> |
---|
65 | </select> |
---|
66 | </td> |
---|
67 | </tr> |
---|
68 | </tbody> |
---|
69 | </table> |
---|
70 | |
---|
71 | <div tal:condition="not: view/manage_applications"> |
---|
72 | <input id="confirm_passport" name="confirm_passport" |
---|
73 | type="checkbox" value="True"/> |
---|
74 | <span i18n:translate=""> |
---|
75 | I confirm that the Passport Photograph uploaded on this form is a |
---|
76 | true picture of me. |
---|
77 | </span> |
---|
78 | </div> |
---|
79 | <br /> |
---|
80 | |
---|
81 | <div tal:condition="view/availableActions"> |
---|
82 | <span tal:repeat="action view/actions" |
---|
83 | tal:omit-tag=""> |
---|
84 | <input tal:condition="python:action.label in view.display_actions[0]" |
---|
85 | tal:replace="structure action/render"/> |
---|
86 | </span> |
---|
87 | </div> |
---|
88 | |
---|
89 | <tal:refereereports condition="view/display_refereereports"> |
---|
90 | <br /><br /> |
---|
91 | <h3 i18n:translate=""> |
---|
92 | Referee Reports |
---|
93 | </h3> |
---|
94 | <table i18n:domain="waeup.kofa" class="table table-condensed"> |
---|
95 | <thead> |
---|
96 | <tr> |
---|
97 | <th i18n:translate="">Report Id</th> |
---|
98 | <th i18n:translate="">Creation Date</th> |
---|
99 | <th i18n:translate="">Referee</th> |
---|
100 | <th i18n:translate="">Email Address</th> |
---|
101 | </tr> |
---|
102 | </thead> |
---|
103 | <tbody> |
---|
104 | <tr tal:repeat="cl context/refereereports"> |
---|
105 | <td> <a tal:attributes="href python:view.url(cl)"> |
---|
106 | <span tal:content="cl/r_id">RID</span></a></td> |
---|
107 | <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td> |
---|
108 | <td tal:content="cl/name">REFEREE</td> |
---|
109 | <td tal:content="cl/email">EMAIL</td> |
---|
110 | </tr> |
---|
111 | </tbody> |
---|
112 | </table> |
---|
113 | </tal:refereereports> |
---|
114 | |
---|
115 | <tal:payments condition="view/display_payments"> |
---|
116 | <br /><br /> |
---|
117 | <h3 i18n:translate=""> |
---|
118 | Payment Tickets |
---|
119 | </h3> |
---|
120 | |
---|
121 | <table i18n:domain="waeup.kofa" class="table table-condensed"> |
---|
122 | <thead> |
---|
123 | <tr> |
---|
124 | <th> </th> |
---|
125 | <th i18n:translate="">Payment Id</th> |
---|
126 | <th i18n:translate="">Creation Date</th> |
---|
127 | <th i18n:translate="">Payment Date</th> |
---|
128 | <th i18n:translate="">Category</th> |
---|
129 | <th i18n:translate="">Item</th> |
---|
130 | <th i18n:translate="">State</th> |
---|
131 | </tr> |
---|
132 | </thead> |
---|
133 | <tbody> |
---|
134 | <tr tal:repeat="cl context/payments"> |
---|
135 | <td> |
---|
136 | <input type="checkbox" name="val_id" |
---|
137 | tal:attributes="value cl/__name__" |
---|
138 | tal:condition="python: not view.unremovable(cl)" /> |
---|
139 | </td> |
---|
140 | <td> <a tal:attributes="href python:view.url(cl)"> |
---|
141 | <span tal:content="cl/p_id">PID</span></a></td> |
---|
142 | <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td> |
---|
143 | <td tal:content="python: layout.formatDatetime(cl.payment_date)">PAYMENT DATE</td> |
---|
144 | <td tal:content ="cl/category">CATEGORY</td> |
---|
145 | <td tal:content ="cl/display_item">ITEM</td> |
---|
146 | <td tal:content ="cl/p_state_title">STATE</td> |
---|
147 | </tr> |
---|
148 | </tbody> |
---|
149 | </table> |
---|
150 | |
---|
151 | <div tal:condition="view/availableActions"> |
---|
152 | <span tal:repeat="action view/actions" |
---|
153 | tal:omit-tag=""> |
---|
154 | <input tal:condition="python:action.label in view.display_actions[1]" |
---|
155 | tal:replace="structure action/render"/> |
---|
156 | </span> |
---|
157 | </div> |
---|
158 | <br /> |
---|
159 | <p i18n:translate="" tal:condition="context/special"> |
---|
160 | <strong>Notice:</strong> If you need to pay for another service, |
---|
161 | select the corresponding special application category above, |
---|
162 | click 'Save' and then 'Add online payment ticket' again. |
---|
163 | </p> |
---|
164 | </tal:payments> |
---|
165 | </form> |
---|