source: WAeUP_SRP/trunk/skins/waeup_student/application_view.pt @ 1167

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

getStudentInfo replaced (not yet thoroughly tested!)

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1<metal:html tal:define="info context/getApplicationInfo">
2  <span tal:condition="not: info">
3    <span tal:content="here/illegal_view" />
4  </span>
5  <metal:block tal:condition="info">
6  <metal:body use-macro="here/waeup_content_master/macros/master">
7    <metal:main fill-slot="main">
8      <span tal:condition="not: info">
9        <metal:block use-macro="here/error_not_found/macros/not_found" />
10      </span>
11      <span tal:condition="info"
12            tal:define="review_state info/review_state">
13           
14        <div style="text-align: right"
15             tal:condition="python:review_state not in ('created','application_pin_entered',)">
16        <a href="" target="slip" tal:attributes="href string:application_slip"
17            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')">
18            <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
19            Application Slip
20        </a>
21       
22        </div>
23
24        <h3>My Application Record</h3>
25        <br />
26        <span tal:omit-tag=""
27              tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
28              layout_mode='view',
29              layout_id='student_application_fe')"
30              />
31      </span>
32    </metal:main>
33  </metal:body>
34  </metal:block>
35</metal:html>
Note: See TracBrowser for help on using the repository browser.