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

Last change on this file since 1892 was 1783, checked in by Henrik Bettermann, 17 years ago
  • assertViewable removed and page templates adjusted, so that no traceback occurs.
  • 'Previous Session' action added
  • waeup_content_master.pt removed
  • and more
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1<metal:body use-macro="here/main_template/macros/master">
2   <metal:main fill-slot="main"
3                 tal:define="info context/getApplicationInfo">
4      <span tal:condition="not: info">
5        <span tal:content="here/illegal_view" />
6      </span>
7      <span tal:condition="info">
8           
9        <div style="text-align: right" tal:define="review_state info/review_state"
10             tal:condition="python:review_state not in ('created','application_pin_entered',)">
11        <a href="" target="slip" tal:attributes="href string:application_slip"
12            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')">
13            <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
14            Application Slip
15        </a>
16       
17          </div>
18        <a href=""
19           tal:attributes="href string:${here/academicsParent}">
20          <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
21          Up one level
22        </a>
23        <h3>My Application Record</h3>
24        <br />
25        <span tal:omit-tag=""
26              tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
27              layout_mode='view',
28              layout_id='student_application_fe')"
29              />
30      </span>
31   </metal:main>
32</metal:body>
Note: See TracBrowser for help on using the repository browser.