source: WAeUP_SRP/base/skins/waeup_student/admission_form.pt @ 2496

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

footnote info modified

File size: 3.6 KB
Line 
1<metal:html tal:define="info context/getStudentInfo">
2  <span tal:condition="not: info">
3    <span tal:content="here/illegal_view" />
4  </span>
5<metal:block tal:condition="info"> 
6  <metal:body use-macro="here/main_template/macros/master">
7    <metal:main fill-slot="main">
8    <span tal:condition="not: info">
9      <span tal:content="here/illegal_view" />
10    </span>
11    <span tal:condition="info"
12          tal:define="review_state info/review_state">
13         
14
15      <div style="text-align: right"
16           tal:condition="python:review_state in ('admitted', 'clearance_pin_entered', 'clearance_requested', 'cleared', 'objection_raised',)">
17      <a href="" target="slip" tal:attributes="href string:admission_slip"
18          onclick="javascript:window.open('','slip','width=600, height=700, directories=no, toolbar=no, location=no, menubar=yes, scrollbars=yes, status=no, resizable=no, dependent=no')">
19          <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
20          Admission Slip
21      </a>
22      </div>         
23 
24         
25      <h3>This is to inform you that you have been provisionally admitted into University of Benin as follows:
26      </h3>
27
28      <br />
29      <span tal:omit-tag=""
30            tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
31            layout_mode='view_info',
32            layout_id='student_application_fe')"
33            />
34
35      <h4>Your Study Course:</h4>
36      <table tal:define="sc python: info['course_doc']">
37        <tr>
38          <td width="180px">Certificate:</td>
39          <td><span tal:content="sc/title" /></td>
40        </tr>
41        <tr>
42          <td>Certificate ID:</td>
43          <td tal:content="sc/study_course" />
44        </tr>
45          <span tal:define="f_id sc/faculty;
46          d_id sc/department;
47          f_title context/academics/?f_id/Title|string:Faculty not yet in Prospectus;
48          d_title context/academics/?f_id/?d_id/Title|string:Department not yet in Prospectus"
49          >
50            <tr>
51              <td>Faculty:</td>
52              <td tal:content="f_title" />
53            </tr>
54            <tr>
55              <td>Department:</td>
56              <td><span tal:content="d_title" /></td>
57            </tr>
58          </span>
59        </table>       
60       
61        <br />
62       
63      <strong tal:condition="python: 'pt' in info['app_doc'].entry_mode ">Clearance commences on resumption and ends exactly on 1st June 2007.
64              Any breach of this directive will result in forfeiture of the admission offer.</strong>
65      <strong tal:condition="python: 'ft' in info['app_doc'].entry_mode ">Clearance commences on resumption and ends exactly two(2) weeks after resumption date.
66              Any breach of this directive will result in forfeiture of the admission offer.</strong>           
67             
68      <br /><br />     
69 
70     
71      <form action="." method="post" class="group">
72
73                <input  tal:condition="python:review_state=='admitted'" type="submit" name="raise_objection:method" value="Raise an Objection"
74                       class="destructive"
75                       tal:attributes="onclick python:'return window.confirm(\'%s\')' %
76                       (cpsmcat('Confirm that you want to raise an objection.'), )"
77                       />
78                <input tal:condition="python:review_state in ('admitted', 'objection_raised',)" type="submit" name="application_edit:method"
79                       class="context" value="Continue"
80                       />
81       </form>
82    </span>
83    </metal:main>
84  </metal:body>
85</metal:block>     
86</metal:html>
Note: See TracBrowser for help on using the repository browser.