Commit afcee318 authored by Alexandre Boeglin's avatar Alexandre Boeglin

2006-09-26 Alex

* applied erp5_xhtml_style's patch for application of the css class attribute to the field title

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10321 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 07db4891
......@@ -61,9 +61,7 @@
<tal:repeat repeat="html_tuple html_render">\n
<tr tal:attributes="title python: context.Localizer.translate(\'erp5_ui\', context.Base_getFieldDescription(field))">\n
<td tal:content="structure python: html_tuple[0]"\n
tal:attributes="class python: \n
{0: {0: None, 1: \'required\'},\n
1: {0: \'error\', 1: \'reqerror\'}}[field_errors.has_key(field.id)][field.is_required()]"\n
tal:attributes="class python: \' \'.join([x for x in [\'field\', field.is_required() and \'required\' or None, field_errors.has_key(field.id) and \'error\' or None, field.get_value(\'css_class\') or None] if x is not None])"\n
i18n:translate="" i18n:domain="ui" />\n
<td>\n
<tal:block metal:use-macro="context/form_developper_buttons/macros/field"/>\n
......
2006-09-26 Alex
* applied erp5_xhtml_style's patch for application of the css class attribute to the field title
2006-07-19 Kevin
* Add support of HTML Report in list_mode (similar to history tab, but in list_mode).
......
9
\ No newline at end of file
13
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment