source: WAeUP_SRP/trunk/skins/waeup_student/application_edit_form.pt @ 877

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

some layout modifications

  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1<metal:html tal:define="info context/getStudentInfo;
2            rendered_main python:info['app_doc'].render(
3                      layout_mode='edit',
4                      schema_id = 'student_application',
5                      layout_id = 'student_application_fe',
6                      request=request,
7                      use_session=True,);
8           form_action string:application_edit;
9           edition python:True;
10           session2006 python:True;
11           metadata nothing;
12            ">
13  <metal:body use-macro="here/waeup_content_master/macros/master">
14    <metal:block fill-slot="header">
15      <a href=""
16         tal:attributes="href string:${here/academicsParent}">
17        <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
18        Up one level
19      </a>
20      <h3>Update your Application Data!</h3>
21      <br />
22    </metal:block> 
23 
24    <metal:main fill-slot="main">
25    <form action="ACTION" method="post" id="editForm"
26          enctype="multipart/form-data" class="workflow"
27          tal:attributes="action form_action">
28      <span tal:condition="not: info">
29        <metal:block use-macro="here/error_not_found/macros/not_found" />
30      </span>
31      <span tal:condition="info">
32        <span tal:omit-tag="" tal:replace="structure rendered_main"/>
33      </span>
34      <input type="submit" class="standalone"
35             name="cpsdocument_edit_button"
36             value="Save & Return Later"
37             id="cpsdocument_edit_button"
38             tal:condition="not:session2006" />
39      <input type="submit" class="standalone"
40             name="cpsdocument_edit_and_view_button"
41             value="Save & Apply"
42             id="cpsdocument_edit_and_view_button"
43             tal:condition="not:session2006" />
44      <input type="submit" class="standalone"
45             name="cpsdocument_edit_and_view_button"
46             value="Save & Continue"
47             id="cpsdocument_edit_and_view_button"
48             tal:condition="session2006" />             
49    </form>
50    </metal:main>
51  </metal:body>
52</metal:html>
Note: See TracBrowser for help on using the repository browser.