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 | <p> |
---|
15 | <br /> |
---|
16 | <span i18n:translate=""> |
---|
17 | <strong>Notice:</strong> |
---|
18 | Download, print and fill the |
---|
19 | </span> |
---|
20 | <a href="https://imostate.waeup.org/downloads/AttestationForm.pdf" |
---|
21 | i18n:translate=""> |
---|
22 | <strong>Attestation Form</strong></a>. |
---|
23 | Scan the filled Attestation Form together |
---|
24 | with other documents required for application: |
---|
25 | (1) Local Government Certificate of Indigene, |
---|
26 | (2) Credentials and the |
---|
27 | (3) NYSC Discharge Certificate. |
---|
28 | Print these four scanned documents all together into a single pdf file and |
---|
29 | upload the file as Extra Applicant Information Form below. |
---|
30 | <br /><br /> |
---|
31 | </p> |
---|
32 | |
---|
33 | <div class="workflow"> |
---|
34 | <div tal:repeat="msg context/history/messages"> |
---|
35 | <span tal:replace="msg">MESSAGE</span><br /> |
---|
36 | </div> |
---|
37 | </div> |
---|
38 | |
---|
39 | <table class="form-table"> |
---|
40 | <tbody> |
---|
41 | <tal:widgets content="structure provider:widgets" /> |
---|
42 | <tr> |
---|
43 | <td class="separator" colspan="2">File Uploads</td> |
---|
44 | </tr> |
---|
45 | <tr> |
---|
46 | <td class="fieldname" i18n:translate=""> |
---|
47 | Passport Photo: |
---|
48 | </td> |
---|
49 | <td> |
---|
50 | <img src="passport.jpg" height="180px" /><br /> |
---|
51 | <input type="file" name="form.passport" /> |
---|
52 | <br /> |
---|
53 | <span i18n:translate=""> |
---|
54 | Max. file size: |
---|
55 | </span> |
---|
56 | <span tal:replace="view/max_upload_size">10 KB</span> |
---|
57 | </tr> |
---|
58 | <tr> |
---|
59 | <td class="fieldname" i18n:translate=""> |
---|
60 | Extra Applicant Information Form: |
---|
61 | </td> |
---|
62 | <td> |
---|
63 | <p tal:condition="python: view.file_exists('extraform.pdf')"> |
---|
64 | <a href="extraform.pdf" |
---|
65 | i18n:translate=""> |
---|
66 | Download pdf file |
---|
67 | </a> |
---|
68 | </p> |
---|
69 | <input type="file" name="form.extraform" /> |
---|
70 | <br /> |
---|
71 | <span i18n:translate=""> |
---|
72 | Max. file size: |
---|
73 | </span> |
---|
74 | <span tal:replace="view/max_file_upload_size">10 KB</span> |
---|
75 | </tr> |
---|
76 | <tr tal:condition="view/manage_applications"> |
---|
77 | <td class="fieldname" i18n:translate="">Password:</td> |
---|
78 | <td> |
---|
79 | <input name="password" type="password" /> |
---|
80 | </td> |
---|
81 | </tr> |
---|
82 | <tr tal:condition="view/manage_applications"> |
---|
83 | <td class="fieldname" i18n:translate="">Retype Password:</td> |
---|
84 | <td> |
---|
85 | <input name="control_password" type="password" /> |
---|
86 | </td> |
---|
87 | </tr> |
---|
88 | <tr tal:condition="view/manage_applications"> |
---|
89 | <td class="fieldname" i18n:translate="">Application Transition:</td> |
---|
90 | <td> |
---|
91 | <select id="transition" name="transition"> |
---|
92 | <option tal:repeat="transition view/getTransitions" |
---|
93 | tal:attributes="value transition/name"> |
---|
94 | <span tal:replace="transition/title">TRANSITIONTITLE</span> |
---|
95 | </option> |
---|
96 | </select> |
---|
97 | </td> |
---|
98 | </tr> |
---|
99 | </tbody> |
---|
100 | </table> |
---|
101 | |
---|
102 | <div tal:condition="not: view/manage_applications"> |
---|
103 | <input id="confirm_passport" name="confirm_passport" |
---|
104 | type="checkbox" value="True"/> |
---|
105 | <span i18n:translate=""> |
---|
106 | I confirm that the Passport Photograph uploaded on this form is a |
---|
107 | true picture of me. |
---|
108 | </span> |
---|
109 | </div> |
---|
110 | <br /> |
---|
111 | |
---|
112 | <div tal:condition="view/availableActions"> |
---|
113 | <span tal:repeat="action view/actions" |
---|
114 | tal:omit-tag=""> |
---|
115 | <input tal:condition="python:action.label in view.display_actions[0]" |
---|
116 | tal:replace="structure action/render"/> |
---|
117 | </span> |
---|
118 | </div> |
---|
119 | |
---|
120 | </form> |
---|