source: WAeUP_SRP/trunk/skins/waeup_student/admission_slip.pt @ 979

Last change on this file since 979 was 975, checked in by Henrik Bettermann, 18 years ago

slips changed according to Kehinde's email
passport picture no more editable by student

File size: 1.8 KB
Line 
1<metal:html tal:define="info context/getStudentInfo">
2  <metal:body use-macro="here/main_template/macros/master">
3    <metal:main fill-slot="main">
4    <span tal:condition="not: info">
5      <metal:block use-macro="here/error_not_found/macros/not_found" />
6    </span>
7    <span tal:condition="info">
8
9      <h3>This is to inform you that you have been provisionally admitted into University of Benin as follows:
10      </h3>
11
12      <br />
13     
14           
15      <span tal:omit-tag=""
16            tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
17            layout_mode='view_info',
18            layout_id='student_application_fe')"
19            />
20
21      <h4>Your Study Course:</h4>
22      <table tal:define="sc python: info['course_doc']">
23        <tr>
24          <td width="180px">Certificate:</td>
25          <td><span tal:content="sc/title" /></td>
26        </tr>
27        <tr>
28          <td>Certificate ID:</td>
29          <td tal:content="sc/study_course" />
30        </tr>
31        <span tal:define="f_id sc/faculty;
32                        d_id sc/department;
33                        f_title context/academics/?f_id/Title;
34                        d_title context/academics/?f_id/?d_id/Title"
35                        >
36            <tr>
37              <td>Faculty:</td>
38              <td tal:content="f_title" />
39            </tr>
40            <tr>
41              <td>Department:</td>
42              <td><span tal:content="d_title" /></td>
43            </tr>
44          </span>
45        </table>       
46      </span>
47     
48      <br />
49     
50      <strong>Clearance commences on resumption and ends exactly two(2)weeks after resumption date.
51              Any breach of this directive,will result in forfeiture of the admission offer.</strong>
52   
53    </metal:main>
54  </metal:body>
55</metal:html>
Note: See TracBrowser for help on using the repository browser.