source: WAeUP_SRP/base/skins/waeup_student/apply_admission_form.pt @ 2316

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

Some changes to make PRE-NCE application work.

mail2student.py: senders name and email address changed

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