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

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

no comment

  • Property svn:keywords set to Id
File size: 2.3 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           "
7           >
8  <metal:block define-macro="edit_form">
9    <metal:block use-macro="here/main_template/macros/master">
10      <metal:block fill-slot="main">
11        <h3>Apply for the Post University Matriculation Examination! </h3>
12        <br />
13        <form action="" id="editForm" method="post"
14              enctype="multipart/form-data" class="workflow"
15              tal:attributes="action string:${context/absolute_url}/apply_pume"
16              >
17          <input type="hidden" name="reg_no"
18                 tal:attributes="value ds/reg_no|nothing"
19                 tal:condition="ds/reg_no|nothing"/>
20          <div tal:replace="structure rendered_main" />
21          <div class="" tal:condition="python: mode=='edit'">
22          <input type="checkbox" class="standalone"
23                 name="confirm"
24                 value=""
25            />
26            I confirm that the Passport Photograph uploaded on this form is a true picture of me.
27          </div>
28         
29          <input type="submit" class="standalone"
30                 name="edit"
31                 value="Save"
32                 tal:condition="python: mode == 'edit'" />
33          <input type="submit" class="standalone" name="apply"
34                 value="Save & Apply for PUME"
35                 tal:condition="python: mode == 'edit'"
36                 />
37          <input type="submit"
38                 class="standalone"
39                 name="create"
40                 value="Login for PUME Application"
41                 tal:condition="python: mode == 'create'"
42                 />
43          </form>
44          <p>Instructions :</p>
45          <ul tal:condition="python: mode in ('create','edit')">
46            <li>Enter your JAMB Registration Number and the Application PIN above.</li>
47            <li>Upload your passport picture.</li>
48            <li>Apply for PUME.</li>
49          </ul>
50          <ul tal:condition="python: mode == 'view'">
51            <li>Print the Pume Acknowledgement Slip.</li>
52          </ul>
53      </metal:block>
54      <metal:block fill-slot="sub">
55      </metal:block>
56    </metal:block>
57  </metal:block>
58</tal:block>
Note: See TracBrowser for help on using the repository browser.