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

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

layout of admission form/slip modified

File size: 1.5 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     
14      <span tal:omit-tag=""
15            tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
16            layout_mode='view_info',
17            layout_id='student_application_fe')"
18            />
19
[871]20      <h4>Your Study Course:</h4>
[837]21      <table tal:define="sc python: info['course_doc']">
22        <tr>
23          <td width="180px">Certificate:</td>
24          <td><span tal:content="sc/title" /></td>
25        </tr>
26        <tr>
27          <td>Certificate ID:</td>
28          <td tal:content="sc/study_course" />
29        </tr>
[843]30        <span tal:define="f_id sc/faculty;
31                        d_id sc/department;
32                        f_title context/academics/?f_id/Title;
33                        d_title context/academics/?f_id/?d_id/Title"
34                        >
35            <tr>
36              <td>Faculty</td>
37              <td tal:content="f_title" />
38            </tr>
39            <tr>
40              <td>Department</td>
41              <td><span tal:content="d_title" /></td>
42            </tr>
43          </span>
44        </table>       
45      </span>
[837]46    </metal:main>
47  </metal:body>
48</metal:html>
Note: See TracBrowser for help on using the repository browser.