source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicanteditpage.pt @ 15369

Last change on this file since 15369 was 15265, checked in by Henrik Bettermann, 6 years ago

Enable passport upload also for cert and trans applications.

File size: 6.3 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
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&hellip;
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="python: view.target in ('trans', 'cert')">
46        <td class="fieldname" i18n:translate="">
47          Statement of Result:
48        </td>
49        <td>
50          <p tal:condition="python: view.file_exists('stateresult.pdf')">
51            <a href="stateresult.pdf"
52               i18n:translate="">
53              Download pdf file
54            </a>
55          </p>
56          <div class="input-group half">
57            <div class="input-group-btn">
58              <div class="btn btn-default btn-file">
59                Select&hellip;
60              <input type="file" name="form.stateresult" />
61              </div>
62            </div>
63            <input type="text" class="form-control" readonly>
64          </div>
65          <span i18n:translate="">
66            PDF files only. Max. file size:
67          </span>
68          <span tal:replace="view/max_file_upload_size">10 KB</span>
69      </tr>
70      <tr tal:condition="view/manage_applications">
71        <td class="fieldname" i18n:translate="">Password:</td>
72        <td>
73          <input class="form-control" name="password" type="password"  />
74        </td>
75      </tr>
76      <tr tal:condition="view/manage_applications">
77        <td class="fieldname" i18n:translate="">Retype Password:</td>
78        <td>
79          <input class="form-control" name="control_password" type="password" />
80        </td>
81      </tr>
82      <tr tal:condition="view/manage_applications">
83        <td class="fieldname" i18n:translate="">Application Transition:</td>
84        <td>
85          <select id="transition" name="transition" class="form-control half">
86            <option tal:repeat="transition view/getTransitions"
87                    tal:attributes="value transition/name">
88              <span tal:replace="transition/title">TRANSITIONTITLE</span>
89            </option>
90          </select>
91        </td>
92      </tr>
93    </tbody>
94  </table>
95
96  <div tal:condition="python: not view.manage_applications and not view.target in ('trans', 'cert')">
97    <input id="confirm_passport" name="confirm_passport"
98           type="checkbox" value="True"/>&nbsp;&nbsp;
99    <span i18n:translate="">
100     I hereby confirm that the Passport Photograph uploaded on this form is a
101     true picture of me. I also acknowledge by ticking this check box that,
102     if discovered at any time that I do not possess any of the qualifications
103     which I claim I have obtained, I will be expelled from the University
104     and shall not be re-admitted for the same or any other programme,
105     even if I have upgraded my previous qualifications or possess additional
106     qualifications.
107    </span>
108  </div>
109  <div tal:condition="python: not view.manage_applications and view.target not in ('trans', 'cert')">
110    <input id="confirm_passport" name="confirm_passport"
111           type="checkbox" value="True"/>&nbsp;&nbsp;
112    <span i18n:translate="">
113     I hereby confirm that the Passport Photograph uploaded on this form is a
114     true picture of me.
115    </span>
116  </div>
117  <br />
118
119  <div tal:condition="view/availableActions">
120    <span tal:repeat="action view/actions"
121          tal:omit-tag="">
122      <input tal:condition="python:action.label in view.display_actions[0]"
123             tal:replace="structure action/render"/>
124    </span>
125  </div>
126
127  <tal:payments condition="view/display_payments">
128    <br /><br />
129    <h3 i18n:translate="">
130        Payment Tickets
131    </h3>
132
133    <table i18n:domain="waeup.kofa" class="table table-condensed">
134      <thead>
135      <tr>
136        <th>&nbsp;</th>
137        <th i18n:translate="">Payment Id</th>
138        <th i18n:translate="">Creation Date</th>
139        <th i18n:translate="">Payment Date</th>
140        <th i18n:translate="">Category</th>
141        <th i18n:translate="">Item</th>
142        <th i18n:translate="">State</th>
143      </tr>
144      </thead>
145      <tbody>
146        <tr tal:repeat="cl context/payments">
147          <td>
148           <input type="checkbox" name="val_id"
149                 tal:attributes="value cl/__name__"
150           tal:condition="python: not view.unremovable(cl)" />
151          </td>
152          <td> <a tal:attributes="href python:view.url(cl)">
153          <span tal:content="cl/p_id">PID</span></a></td>
154          <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td>
155          <td tal:content="python: layout.formatDatetime(cl.payment_date)">PAYMENT DATE</td>
156          <td tal:content ="cl/category">CATEGORY</td>
157          <td tal:content ="cl/display_item">ITEM</td>
158          <td tal:content ="cl/p_state_title">STATE</td>
159        </tr>
160      </tbody>
161    </table>
162
163    <div tal:condition="view/availableActions">
164      <span tal:repeat="action view/actions"
165            tal:omit-tag="">
166        <input tal:condition="python:action.label in view.display_actions[1]"
167               tal:replace="structure action/render"/>
168      </span>
169    </div>
170    <br />
171    <p i18n:translate="" tal:condition="context/special">
172      <strong>Notice:</strong> If you need to pay for another service,
173      select the corresponding special application category above,
174      click 'Save' and then 'Add online payment ticket' again.
175    </p>
176  </tal:payments>
177</form>
Note: See TracBrowser for help on using the repository browser.