source: WAeUP_SRP/base/skins/waeup_student/expired_admission_form.pt @ 2407

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

generic application form for all kinds of application processes (Part1)

File size: 1.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'">Show Post UME Screening (2007/2008) Application Record! </h3>
13        <h3 tal:condition="python:mode=='view'">Your 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_admission"
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          <input type="submit"
29                 class="standalone"
30                 name="create"
31                 value="Show Application Record"
32                 tal:condition="python: mode == 'create'"
33                 />
34          </form>
35          <metal:block tal:condition="python: mode in ('create','edit')">
36          <p>Instructions :</p>
37          <ul>
38            <li>Enter your JAMB Registration Number and the Application PIN.</li>
39            <li>Print your Acknowledegement Slip.
40          </ul>
41          <br />
42          <font color="red">Application period has expired!</font>
43          </metal:block>
44      </metal:block>
45    </metal:block>
46  </metal:block>
47</tal:block>
Note: See TracBrowser for help on using the repository browser.