source: main/waeup.imostate/trunk/src/waeup/imostate/applicants/browser_templates/applicanteditpage.pt @ 10381

Last change on this file since 10381 was 10381, checked in by Henrik Bettermann, 11 years ago

Modify notice.

File size: 4.8 KB
Line 
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 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    Then scan the filled form together with other
24    documents required for application:
25    (1) Local Government Certificate of Indegen,
26    (2) Credentials and the
27    (3) NYSC Discharge Certificate. Print these four scanned documents
28    into a single pdf file and upload the file with the form below.
29    <br /><br />
30  </p>
31
32  <div class="workflow">
33    <div tal:repeat="msg context/history/messages">
34      <span tal:replace="msg">MESSAGE</span><br />
35    </div>
36  </div>
37
38  <table class="form-table">
39    <tbody>
40      <tal:widgets content="structure provider:widgets" />
41        <tr>
42          <td class="separator" colspan="2">File Uploads</td>
43      </tr>
44      <tr>
45        <td class="fieldname" i18n:translate="">
46          Passport Photo:
47        </td>
48        <td>
49          <img src="passport.jpg" height="180px" /><br />
50          <input type="file" name="form.passport" />
51          <br />
52          <span i18n:translate="">
53            Max. file size:
54          </span>
55          <span tal:replace="view/max_upload_size">10 KB</span>
56      </tr>
57      <tr>
58        <td class="fieldname" i18n:translate="">
59          Extra Applicant Information Form:
60        </td>
61        <td>
62          <p tal:condition="python: view.file_exists('extraform.pdf')">
63            <a href="extraform.pdf"
64               i18n:translate="">
65              Download pdf file
66            </a>
67          </p>
68          <input type="file" name="form.extraform" />
69          <br />
70          <span i18n:translate="">
71            Max. file size:
72          </span>
73          <span tal:replace="view/max_file_upload_size">10 KB</span>
74      </tr>
75      <tr>
76        <td class="fieldname" i18n:translate="">
77          Referee's Form:
78        </td>
79        <td>
80          <p tal:condition="python: view.file_exists('refereeform.pdf')">
81            <a href="refereeform.pdf"
82               i18n:translate="">
83              Download pdf file
84            </a>
85          </p>
86          <input type="file" name="form.refereeform" />
87          <br />
88          <span i18n:translate="">
89            Max. file size:
90          </span>
91          <span tal:replace="view/max_file_upload_size">10 KB</span>
92      </tr>
93      <tr tal:condition="python: view.target.startswith('pg')">
94        <td class="fieldname" i18n:translate="">
95          Credentials:
96        </td>
97        <td>
98          <p tal:condition="python: view.file_exists('credentials.pdf')">
99            <a href="credentials.pdf"
100               i18n:translate="">
101              Download pdf file
102            </a>
103          </p>
104          <input type="file" name="form.credentials" />
105          <br />
106          <span i18n:translate="">
107            Max. file size:
108          </span>
109          <span tal:replace="view/max_file_upload_size">10 KB</span>
110      </tr>
111      <tr tal:condition="view/manage_applications">
112        <td class="fieldname" i18n:translate="">Password:</td>
113        <td>
114          <input name="password" type="password"  />
115        </td>
116      </tr>
117      <tr tal:condition="view/manage_applications">
118        <td class="fieldname" i18n:translate="">Retype Password:</td>
119        <td>
120          <input name="control_password" type="password" />
121        </td>
122      </tr>
123      <tr tal:condition="view/manage_applications">
124        <td class="fieldname" i18n:translate="">Application Transition:</td>
125        <td>
126          <select id="transition" name="transition">
127            <option tal:repeat="transition view/getTransitions"
128                    tal:attributes="value transition/name">
129              <span tal:replace="transition/title">TRANSITIONTITLE</span>
130            </option>
131          </select>
132        </td>
133      </tr>
134    </tbody>
135  </table>
136
137  <div tal:condition="not: view/manage_applications">
138    <input id="confirm_passport" name="confirm_passport"
139           type="checkbox" value="True"/>
140    <span i18n:translate="">
141    I confirm that the Passport Photograph uploaded on this form is a
142    true picture of me.
143    </span>
144  </div>
145  <br />
146
147  <div tal:condition="view/availableActions">
148    <span tal:repeat="action view/actions"
149          tal:omit-tag="">
150      <input tal:condition="python:action.label in view.display_actions[0]"
151             tal:replace="structure action/render"/>
152    </span>
153  </div>
154
155</form>
Note: See TracBrowser for help on using the repository browser.