source: WAeUP_SRP/trunk/skins/waeup_student/apply_pume_form.pt @ 2168

Last change on this file since 2168 was 2157, checked in by Henrik Bettermann, 17 years ago

make managing application records work

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1<tal:block define="rendered_main options/rendered;
2           portal_status_message options/psm;
3           ds options/ds;
4           jamb options/jamb/getContent|nothing;
5           mode options/mode;
6           show_submit options/show_submit|nothing;
7           "
8           >
9  <metal:block define-macro="edit_form">
10    <metal:block use-macro="here/main_template/macros/master">
11      <metal:block fill-slot="main">
12        <h3 tal:condition="python:not mode=='view'">Apply for Post UME Screening (2007/2008)! </h3>
13        <h3 tal:condition="python:mode=='view'">Your PUME Application Record</h3>
14        <br />
15        <form action="" id="editForm" method="post"
16              enctype="multipart/form-data" class="workflow"
17              tal:attributes="action string:${context/absolute_url}/apply_pume"
18              >
19          <input type="hidden" name="reg_no"
20                 tal:attributes="value ds/reg_no|nothing"
21                 tal:condition="ds/reg_no|nothing"/>
22          <input type="hidden" name="pin"
23                 tal:attributes="value ds/pin|nothing"
24                 tal:condition="ds/pin|nothing"/>
25
26          <div tal:replace="structure rendered_main" />
27         
28          <metal:block tal:condition="python: show_submit and mode == 'edit'">
29            <br/>
30            <input type="checkbox" class="standalone"
31                   name="confirm"
32                   value=""
33                   />
34              I confirm that the Passport Photograph uploaded on this form is a true picture of me.
35            <br/><br/>
36          </metal:block>
37
38         
39          <input type="submit" class="standalone"
40                 name="edit"
41                 value="Save"
42                 tal:condition="python: mode == 'edit'" />
43          <input type="submit" class="standalone" name="apply"
44                 value="Final Submit"
45                 tal:condition="python: show_submit and mode == 'edit'"
46                 />
47          <input type="submit"
48                 class="standalone"
49                 name="create"
50                 value="Show Application Record"
51                 tal:condition="python: mode == 'create'"
52                 />
53          </form>
54          <metal:block tal:condition="python: mode in ('create','edit')">
55          <p>Instructions :</p>
56          <ul>
57            <li>Enter your JAMB Registration Number and the Application PIN.</li>
58            <li>Fill the form and upload your Passport Photograph with red background in jpg format.</li>
59            <li>Save and preview picture.
60            <li>Press the 'Final Submit' button.</li>
61          </ul>
62          <br />
63          <font color="red">Application submission deadline is at Midnight on Thursday, 6th September 2007. 
64          No application will be treated after the deadline. </font>
65          </metal:block>
66      </metal:block>
67    </metal:block>
68  </metal:block>
69</tal:block>
Note: See TracBrowser for help on using the repository browser.