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

Last change on this file since 5616 was 5506, checked in by Henrik Bettermann, 14 years ago

logged_in.py: do not fill app_mobile after first_time_login

apply_admission_manage.py: hand over reg_no after psm == 'invalid'

clean application_edit_form.pt

  • Property svn:keywords set to Id
File size: 1.5 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:block tal:define="rendered_main python:info['app_doc'].render(
7                      layout_mode='edit',
8                      schema_id = 'student_application',
9                      layout_id = 'student_application',
10                      request=request,
11                      use_session=True,);
12           form_action string:application_edit;
13           edition python:True;
14           metadata nothing;
15            ">
16  <metal:body use-macro="here/main_template/macros/master">
17    <metal:block fill-slot="header">
18      <h3>Update Your Application Data!</h3>
19      <br />
20    </metal:block> 
21 
22    <metal:main fill-slot="main">
23    <form action="ACTION" method="post" id="editForm"
24          enctype="multipart/form-data" class="workflow"
25          tal:attributes="action form_action">
26      <span tal:condition="not: info">
27        <metal:block use-macro="here/error_not_found/macros/not_found" />
28      </span>
29      <span tal:condition="info">
30        <span tal:omit-tag="" tal:replace="structure rendered_main"/>
31      </span>
32      <br />
33      <input type="submit" class="standalone"
34             name="cpsdocument_edit_and_view_button"
35             value="Save & Continue"
36             id="cpsdocument_edit_and_view_button"
37             />             
38    </form>
39    </metal:main>
40  </metal:body>
41</metal:block>
42</metal:block>
43</metal:html>
Note: See TracBrowser for help on using the repository browser.