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

Last change on this file since 850 was 843, checked in by joachim, 18 years ago

show filename in clearance slip
show faculty and department title in admission_view and _slip
pin is not used, if an error occurs in the form,
the pin must therefore be the last entry field.
entry_date and entry_session are set in start_clearance

File size: 1.6 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      <h4>Application Data</h4>
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>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    </metal:main>
48  </metal:body>
49</metal:html>
Note: See TracBrowser for help on using the repository browser.