[478] | 1 | <!-- a layout_lib macro --> |
---|
[486] | 2 | <!-- $Id: layout_application_edit.pt 710 2006-10-16 22:30:16Z joachim $ --> |
---|
[492] | 3 | |
---|
[478] | 4 | <metal:block define-macro="default_edit" |
---|
| 5 | tal:define="layout options/layout; |
---|
[486] | 6 | ds options/datastructure; |
---|
| 7 | dm ds/getDataModel; |
---|
[635] | 8 | formaction options/formaction|string:student_edit; |
---|
[486] | 9 | creation creation|nothing; |
---|
| 10 | metadata metadata|nothing; |
---|
| 11 | type_name request/type_name|nothing; |
---|
| 12 | ti python:type_name and getattr(here.portal_types,type_name,None) or getattr(here.portal_types,here.portal_type,None); |
---|
| 13 | cpsmcat nocall:here/translation_service; |
---|
[535] | 14 | apply request/apply_button|nothing; |
---|
[537] | 15 | widgets python:context.getRenderedWidgets(layout); |
---|
[486] | 16 | "> |
---|
| 17 | <form action="" id="editForm" method="post" |
---|
| 18 | enctype="multipart/form-data" class="workflow" |
---|
| 19 | tal:attributes="action formaction" |
---|
| 20 | > |
---|
[537] | 21 | <table class="layoutDefault" summary="Form layout" |
---|
[486] | 22 | tal:condition="layout/rows"> |
---|
[537] | 23 | <span tal:repeat="row python: layout['rows']" valign="top" > |
---|
| 24 | <span tal:repeat="cell row"> |
---|
| 25 | <tr tal:define="widget cell/widget; |
---|
[492] | 26 | wid widget/getWidgetId; |
---|
| 27 | err python:ds.getError(wid); |
---|
| 28 | err_mapping python:ds.getErrorMapping(wid); |
---|
[710] | 29 | is_required python: widget.is_required; |
---|
[492] | 30 | tooltip_id python:wid + '_help'; |
---|
| 31 | widget_css_class cell/widget_css_class|nothing; |
---|
| 32 | css_class python:test(err, 'row error','row')" |
---|
[537] | 33 | tal:condition="python: wid != 'passport'" |
---|
[492] | 34 | > |
---|
[486] | 35 | <div tal:attributes="class widget_css_class; |
---|
| 36 | id python:widget.getHtmlWidgetId()+'_widget';" |
---|
| 37 | > |
---|
[492] | 38 | <td> |
---|
[486] | 39 | <div class="label" tal:condition="widget/label_edit" |
---|
| 40 | tal:attributes="class python:test(is_required, 'label required','label')"> |
---|
| 41 | <label tal:content="widget/label_edit" |
---|
[492] | 42 | tal:attributes="for cell/widget_input_area_id|nothing;">label</label>: |
---|
[486] | 43 | </div> |
---|
| 44 | <button type="button" class="tooltipControl" |
---|
| 45 | tal:condition="widget/help" |
---|
| 46 | tal:attributes="onclick python:'toggleElementVisibility(\'%s\')' % tooltip_id;"> ? </button> |
---|
[492] | 47 | </td> |
---|
| 48 | <td> |
---|
| 49 | <span class="field"> |
---|
[486] | 50 | <div tal:replace="structure cell/widget_rendered"/> |
---|
[492] | 51 | </span> |
---|
[486] | 52 | <div class="tooltipArea" style="visibility: hidden;" |
---|
| 53 | tal:condition="widget/help" |
---|
| 54 | tal:attributes="id tooltip_id; |
---|
| 55 | onclick python:'showElement(false, \'%s\')' % tooltip_id;" |
---|
| 56 | > |
---|
| 57 | <tal:block tal:content="widget/help">This is the help for this field |
---|
| 58 | </tal:block> |
---|
| 59 | </div> |
---|
| 60 | <tal:block condition="err"> |
---|
[478] | 61 | <tal:block define="msg python:cpsmcat(err, mapping=err_mapping)"> |
---|
| 62 | <br /><em style="color: red" |
---|
[486] | 63 | tal:content="msg">err</em> |
---|
[478] | 64 | </tal:block> |
---|
[486] | 65 | </tal:block> |
---|
[492] | 66 | </td> |
---|
[478] | 67 | </div> |
---|
[537] | 68 | </tr> |
---|
| 69 | </span> |
---|
| 70 | </span> |
---|
[672] | 71 | <tr tal:condition="widgets/passport|nothing" |
---|
| 72 | tal:define="cell widgets/passport|nothing;"> |
---|
[537] | 73 | <tal:block tal:define="widget cell/widget; |
---|
| 74 | wid widget/getWidgetId; |
---|
| 75 | err python:ds.getError(wid); |
---|
| 76 | err_mapping python:ds.getErrorMapping(wid); |
---|
| 77 | is_required python: widget.is_required and creation and ('create' not in widget.readonly_layout_modes); |
---|
| 78 | tooltip_id python:wid + '_help'; |
---|
| 79 | widget_css_class widget/widget_css_class|nothing; |
---|
| 80 | css_class python:test(err, 'row error','row')" |
---|
| 81 | > |
---|
| 82 | <div tal:attributes="class widget_css_class; |
---|
| 83 | id python:widget.getHtmlWidgetId()+'_widget';" |
---|
| 84 | > |
---|
| 85 | <td> |
---|
| 86 | <div class="label" tal:condition="widget/label_edit" |
---|
| 87 | tal:attributes="class python:test(is_required, 'label required','label')"> |
---|
| 88 | <label tal:content="widget/label_edit" |
---|
| 89 | tal:attributes="for cell/widget_input_area_id|nothing;">label</label>: |
---|
| 90 | </div> |
---|
| 91 | <button type="button" class="tooltipControl" |
---|
| 92 | tal:condition="widget/help" |
---|
| 93 | tal:attributes="onclick python:'toggleElementVisibility(\'%s\')' % tooltip_id;"> ? </button> |
---|
| 94 | </td> |
---|
| 95 | <td> |
---|
| 96 | <span class="field"> |
---|
| 97 | <div tal:replace="structure cell/widget_rendered"/> |
---|
| 98 | </span> |
---|
| 99 | <div class="tooltipArea" style="visibility: hidden;" |
---|
| 100 | tal:condition="widget/help" |
---|
| 101 | tal:attributes="id tooltip_id; |
---|
| 102 | onclick python:'showElement(false, \'%s\')' % tooltip_id;" |
---|
| 103 | > |
---|
| 104 | <tal:block tal:content="widget/help">This is the help for this field |
---|
| 105 | </tal:block> |
---|
| 106 | </div> |
---|
| 107 | <tal:block condition="err"> |
---|
| 108 | <tal:block define="msg python:cpsmcat(err, mapping=err_mapping)"> |
---|
| 109 | <br /><em style="color: red" |
---|
| 110 | tal:content="msg">err</em> |
---|
| 111 | </tal:block> |
---|
| 112 | </tal:block> |
---|
| 113 | </td> |
---|
| 114 | </div> |
---|
| 115 | </tal:block> |
---|
| 116 | </tr> |
---|
| 117 | </table> |
---|
[492] | 118 | <br /> |
---|
[478] | 119 | <input type="submit" class="standalone" name="cpsdocument_edit_button" |
---|
[537] | 120 | value="Save" |
---|
[535] | 121 | id="cpsdocument_edit_button" |
---|
| 122 | tal:condition="not:creation" /> |
---|
| 123 | <input type="submit" class="standalone" name="apply_admission" |
---|
| 124 | value="apply for admission" |
---|
| 125 | id="cpsdocument_edit_and_view_button" |
---|
| 126 | tal:condition="apply" |
---|
| 127 | tal:attributes="value apply"/> |
---|
[481] | 128 | <input type="submit" |
---|
| 129 | class="standalone" |
---|
| 130 | name="cpsdocument_create_button" |
---|
[502] | 131 | value="apply" |
---|
| 132 | tal:attributes="value options/button" |
---|
| 133 | tal:condition="creation" /> |
---|
[478] | 134 | |
---|
[492] | 135 | </form> |
---|
[478] | 136 | </metal:block> |
---|