source: WAeUP_SRP/trunk/skins/waeup_student/passport_entry_view.pt @ 687

Last change on this file since 687 was 672, checked in by joachim, 18 years ago

several simplifications to student_index, student_edit must be called instead of passport_entry_view

File size: 905 bytes
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="python: context.portal_type != 'Student'">
8        <span tal:define="dummy python: request.RESPONSE.redirect('%s' % info['url'])" />
9      </span>
10      <span tal:condition="info"
11            tal:define="review_state info/review_state">
12        <h3>Upload your Passport Picture!</h3>
13        <br />
14        <span tal:omit-tag=""
15              tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],
16              layout_mode='edit',
17              layout_id='student_application_fe',
18              )"
19              />
20      </span>
21    </metal:main>
22  </metal:body>
23</metal:html>
Note: See TracBrowser for help on using the repository browser.