1 | <tal:block define=" |
---|
2 | info context/getStudentInfo; |
---|
3 | rendered_main python:info['clear_doc'].render(request=request, |
---|
4 | layout_mode = 'edit', |
---|
5 | schema_id='student_clearance', |
---|
6 | layout_id='student_clearance_fe', |
---|
7 | layout_mode='edit', |
---|
8 | use_session=True); |
---|
9 | form_action string:clearance_edit; |
---|
10 | edition python:True; |
---|
11 | creation python:False; |
---|
12 | metadata nothing; |
---|
13 | "> |
---|
14 | <metal:block define-macro="edit_form"> |
---|
15 | <metal:block use-macro="here/waeup_content_master/macros/master"> |
---|
16 | |
---|
17 | <metal:block fill-slot="header"> |
---|
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>Fill Your Clearance/Eligibility Form!</h3> |
---|
24 | <br /> |
---|
25 | </metal:block> |
---|
26 | |
---|
27 | <metal:block fill-slot="main"> |
---|
28 | <form action="ACTION" method="post" id="editForm" |
---|
29 | enctype="multipart/form-data" class="workflow" |
---|
30 | tal:attributes="action form_action"> |
---|
31 | <div class="group"> |
---|
32 | <div class="documentFields"> |
---|
33 | <tal:block define="getFormUidHtml nocall:modules/Products.CPSDocument.utils/getFormUidHtml" |
---|
34 | replace="structure python:getFormUidHtml(request)"/> |
---|
35 | <input type="hidden" id="button_placeholder" name="button_placeholder" value="" /> |
---|
36 | <div id="rendered_main" tal:content="structure rendered_main"> |
---|
37 | CONTENT |
---|
38 | </div> |
---|
39 | </div> |
---|
40 | </div> |
---|
41 | |
---|
42 | <div> |
---|
43 | |
---|
44 | <input type="checkbox" value="True" name="acknowledge" /> |
---|
45 | |
---|
46 | I hereby acknowledge by ticking this check box |
---|
47 | that, if it is discovered at any time that I do not possess any of the |
---|
48 | qualifications which I claim to have obtained, I will be expelled from the |
---|
49 | University and shall not be re-admitted for the same or any other programme, |
---|
50 | even if I have upgraded my previous qualifications or possess additional |
---|
51 | qualifications. |
---|
52 | |
---|
53 | |
---|
54 | </div> |
---|
55 | |
---|
56 | <br /> |
---|
57 | |
---|
58 | <input type="submit" class="standalone" |
---|
59 | name="cpsdocument_edit_button" |
---|
60 | value="Save & Return later" |
---|
61 | id="cpsdocument_edit_button" |
---|
62 | tal:condition="not:creation" /> |
---|
63 | <input type="submit" class="standalone" |
---|
64 | name="cpsdocument_edit_and_view_button" |
---|
65 | value="Save & Submit" |
---|
66 | id="cpsdocument_edit_and_view_button" |
---|
67 | tal:condition="not:creation" /> |
---|
68 | </form> |
---|
69 | <div id="ajax_psm" style="display:none"> |
---|
70 | ajax feedback |
---|
71 | </div> |
---|
72 | </metal:block> |
---|
73 | </metal:block> |
---|
74 | </metal:block> |
---|
75 | </tal:block> |
---|