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

Last change on this file since 1091 was 984, checked in by joachim, 18 years ago

=fixed non existing Faculty/Department? code

File size: 1.9 KB
RevLine 
[837]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     
[975]14           
[837]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
[871]21      <h4>Your Study Course:</h4>
[837]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>
[843]31        <span tal:define="f_id sc/faculty;
32                        d_id sc/department;
[984]33                        f_title context/academics/?f_id/Title|string:Faculty not yet in Prospectus;
34                        d_title context/academics/?f_id/?d_id/Title|string:Department not yet in Prospectus"
[843]35                        >
36            <tr>
[932]37              <td>Faculty:</td>
[843]38              <td tal:content="f_title" />
39            </tr>
40            <tr>
[932]41              <td>Department:</td>
[843]42              <td><span tal:content="d_title" /></td>
43            </tr>
44          </span>
45        </table>       
46      </span>
[975]47     
48      <br />
49     
[980]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>
[975]52   
[837]53    </metal:main>
54  </metal:body>
55</metal:html>
Note: See TracBrowser for help on using the repository browser.