source: WAeUP_SRP/trunk/skins/waeup_student/admission_form.pt @ 1859

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

footnote info modified

File size: 3.6 KB
RevLine 
[837]1<metal:html tal:define="info context/getStudentInfo">
[1096]2  <span tal:condition="not: info">
3    <span tal:content="here/illegal_view" />
4  </span>
5<metal:block tal:condition="info"> 
[1783]6  <metal:body use-macro="here/main_template/macros/master">
[837]7    <metal:main fill-slot="main">
8    <span tal:condition="not: info">
[1783]9      <span tal:content="here/illegal_view" />
[837]10    </span>
11    <span tal:condition="info"
12          tal:define="review_state info/review_state">
13         
14
15      <div style="text-align: right"
[869]16           tal:condition="python:review_state in ('admitted', 'clearance_pin_entered', 'clearance_requested', 'cleared', 'objection_raised',)">
[837]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>         
[1783]23 
[837]24         
25      <h3>This is to inform you that you have been provisionally admitted into University of Benin as follows:
26      </h3>
27
[871]28      <br />
[837]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
[871]35      <h4>Your Study Course:</h4>
[837]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>
[843]45          <span tal:define="f_id sc/faculty;
46          d_id sc/department;
[984]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"
[843]49          >
50            <tr>
[932]51              <td>Faculty:</td>
[843]52              <td tal:content="f_title" />
53            </tr>
54            <tr>
[932]55              <td>Department:</td>
[843]56              <td><span tal:content="d_title" /></td>
57            </tr>
58          </span>
59        </table>       
[975]60       
[979]61        <br />
[975]62       
[1808]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 />     
[975]69 
[837]70     
[866]71      <form action="." method="post" class="group">
72
[1096]73                <input  tal:condition="python:review_state=='admitted'" type="submit" name="raise_objection:method" value="Raise an Objection"
[837]74                       class="destructive"
75                       tal:attributes="onclick python:'return window.confirm(\'%s\')' %
[863]76                       (cpsmcat('Confirm that you want to raise an objection.'), )"
[837]77                       />
[1096]78                <input tal:condition="python:review_state in ('admitted', 'objection_raised',)" type="submit" name="application_edit:method"
[837]79                       class="context" value="Continue"
80                       />
81       </form>
82    </span>
83    </metal:main>
84  </metal:body>
[1096]85</metal:block>     
[837]86</metal:html>
Note: See TracBrowser for help on using the repository browser.