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

Last change on this file since 845 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 1.8 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            proceed request/proceed|nothing;
10           edition python:True;
11           creation python:False;
12           metadata nothing;
13            ">
14  <metal:body use-macro="here/waeup_content_master/macros/master">
15    <metal:block fill-slot="header">
16      <a href=""
17         tal:attributes="href string:${here/academicsParent}">
18        <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
19        Up one level
20      </a>
21      <h3>Update your Application Data!</h3>
22      <br />
23    </metal:block> 
24 
25    <metal:main fill-slot="main">
26    <form action="ACTION" method="post" id="editForm"
27          enctype="multipart/form-data" class="workflow"
28          tal:attributes="action form_action">
29      <span tal:condition="not: info">
30        <metal:block use-macro="here/error_not_found/macros/not_found" />
31      </span>
32      <span tal:condition="info">
33        <span tal:omit-tag="" tal:replace="structure rendered_main"/>
34      </span>
35      <input type="submit" class="standalone" name="cpsdocument_edit_button"
36             value="Save"
37             id="cpsdocument_edit_button"
38             tal:condition="not:creation" />
39      <input type="submit" class="standalone" name="proceed"
40             value="proceed"
41             id="cpsdocument_edit_and_view_button"
42             tal:condition="proceed"
43             tal:attributes="value proceed"/>
44    </form>
45    </metal:main>
46  </metal:body>
47</metal:html>
Note: See TracBrowser for help on using the repository browser.