source: WAeUP_SRP/trunk/skins/waeup_default/layout_search_edit.pt @ 1201

Last change on this file since 1201 was 1192, checked in by joachim, 18 years ago

optimize search a little bit

  • Property svn:keywords set to Id
File size: 3.6 KB
Line 
1<metal:block define-macro="default_edit"
2             tal:define="layout options/layout;
3             ds options/datastructure;
4             formaction options/formaction|string:.;
5             is_flexible options/is_flexible;
6             cpsmcat nocall:here/translation_service;
7             "
8             >
9  <form action='some' method='post'
10        enctype='multipart/form-data'
11        class='workflow'
12        tal:attributes="action formaction">
13    <div class=''>
14      <div class='documentFields'>
15        <table width="" cellpadding="2" cellspacing="2" summary="Form layout">
16          <tr tal:repeat="row layout/rows" valign="top">
17            <td tal:repeat="cell row"
18                tal:attributes="colspan cell/ncols">
19              <tal:block define="widget cell/widget;
20              wid widget/getWidgetId;
21              dm options/datastructure/getDataModel;
22              err python:ds.getError(wid);
23              err_mapping python:ds.getErrorMapping(wid);
24              is_required widget/is_required|nothing;
25              tooltip_id python:wid + '_help';
26              widget_css_class cell/widget_css_class|nothing;
27              widget_css_class python:test(is_flexible, 'group', widget_css_class);
28              css_class python:test(err, 'row error',
29              test(is_flexible, 'group', 'row'))"
30              >
31                <div tal:attributes="class widget_css_class;
32                id python:widget.getHtmlWidgetId()+'_widget';"
33                >
34                  <div class="label" tal:condition="widget/label_edit"
35                       tal:attributes="class python:test(is_required, 'label required','label')">
36                    <label i18n:translate="" tal:condition="widget/is_i18n"
37                           tal:content="widget/label_edit"
38                           tal:attributes="for cell/widget_input_area_id|nothing;">label</label>
39                    <label tal:condition="not:widget/is_i18n"
40                           tal:content="widget/label_edit"
41                           tal:attributes="for cell/widget_input_area_id|nothing;">label</label>
42                  </div>
43                  <button type="button" class="tooltipControl"
44                          tal:condition="widget/help"
45                          tal:attributes="onclick python:'toggleElementVisibility(\'%s\')' % tooltip_id;"> ? </button>
46                  <div class="field">
47                    <div tal:replace="structure cell/widget_rendered"/>
48                  </div>
49                  <div class="tooltipArea" style="visibility: hidden;"
50                       tal:condition="widget/help"
51                       tal:attributes="id tooltip_id;
52                       onclick python:'showElement(false, \'%s\')' % tooltip_id;"
53                       >
54                    <tal:block i18n:translate="" tal:condition="widget/is_i18n"
55                               tal:content="widget/help">i18_key-help_for_this_field</tal:block>
56                    <tal:block tal:condition="not:widget/is_i18n"
57                               tal:content="widget/help">This is the help for this field</tal:block>
58                  </div>
59                  <tal:block condition="err">
60                    <tal:block define="msg python:cpsmcat(err, mapping=err_mapping)">
61                      <br /><em style="color: red"
62                                tal:content="msg">err</em>
63                    </tal:block>
64                  </tal:block>
65                </div>
66              </tal:block>
67            </td>
68          </tr>
69        </table>
70        <input type="submit" class="standalone" name="cpsdocument_edit_button" value="Search" />
71      </div>       
72    </div>
73  </form>
74</metal:block>
75 
Note: See TracBrowser for help on using the repository browser.