Commit dee2bbf2 authored by Jérome Perrin's avatar Jérome Perrin

Don't display an extra cell in stat line ( + other minor style fixes)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19420 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c8b10eda
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
tal:define="listboxline python: listbox_line_structure[\'line\']">\n tal:define="listboxline python: listbox_line_structure[\'line\']">\n
\n \n
<tal:block metal:define-slot="for_form_list"\n <tal:block metal:define-slot="for_form_list"\n
tal:condition="listboxline/isTitleLine | is_report_tree_mode">\n tal:condition="listboxline/isTitleLine">\n
<tal:block metal:define-slot="list_header">\n <tal:block metal:define-slot="list_header">\n
<table:table-row table:style-name=\'ro4\'>\n <table:table-row table:style-name=\'ro4\'>\n
<tal:block tal:condition="python: is_report_tree_mode">\n <tal:block tal:condition="python: is_report_tree_mode">\n
...@@ -112,10 +112,10 @@ ...@@ -112,10 +112,10 @@
</tal:block>\n </tal:block>\n
<tal:block tal:repeat="column_item listboxline/getColumnItemList">\n <tal:block tal:repeat="column_item listboxline/getColumnItemList">\n
<tal:block tal:define="column_property python: column_item[1];\n <tal:block tal:define="column_property python: column_item[1];\n
value column_property;\n value column_property;\n
column_id python: column_item[0];\n column_id python: column_item[0];\n
style_prefix string:;\n style_prefix string:;\n
field python: editable_fields.get(column_id, None);">\n field python: editable_fields.get(column_id, None);">\n
<tal:block metal:use-macro="here/field_ods_macro/macros/cell_value"/>\n <tal:block metal:use-macro="here/field_ods_macro/macros/cell_value"/>\n
</tal:block>\n </tal:block>\n
</tal:block>\n </tal:block>\n
...@@ -129,11 +129,10 @@ ...@@ -129,11 +129,10 @@
</table:table-cell>\n </table:table-cell>\n
</tal:block>\n </tal:block>\n
<table:table-cell table:style-name=\'report-column-title\'\n <table:table-cell table:style-name=\'report-column-title\'\n
tal:condition="listboxline/getSectionName"\n
table:number-columns-spanned=\'1\'\n table:number-columns-spanned=\'1\'\n
office:value-type=\'string\'>\n office:value-type=\'string\'>\n
<tal:block tal:condition="listboxline/getSectionName">\n
<text:p tal:content="listboxline/getSectionName"/>\n <text:p tal:content="listboxline/getSectionName"/>\n
</tal:block>\n
</table:table-cell>\n </table:table-cell>\n
<tal:block tal:repeat="empty_index python: xrange(listboxline.getSectionDepth()+1, max_section_depth)">\n <tal:block tal:repeat="empty_index python: xrange(listboxline.getSectionDepth()+1, max_section_depth)">\n
<table:table-cell table:style-name=\'report-column-title\'\n <table:table-cell table:style-name=\'report-column-title\'\n
...@@ -143,10 +142,10 @@ ...@@ -143,10 +142,10 @@
</tal:block>\n </tal:block>\n
<tal:block tal:repeat="column_item python: listboxline.getColumnItemList()">\n <tal:block tal:repeat="column_item python: listboxline.getColumnItemList()">\n
<tal:block tal:define="column_property python: column_item[1];\n <tal:block tal:define="column_property python: column_item[1];\n
value column_property;\n value column_property;\n
column_id python: column_item[0];\n column_id python: column_item[0];\n
style_prefix string:stat-;\n style_prefix string:stat-;\n
field python: editable_fields.get(column_id, None);">\n field python: editable_fields.get(column_id, None);">\n
<tal:block metal:use-macro="here/field_ods_macro/macros/cell_value"/>\n <tal:block metal:use-macro="here/field_ods_macro/macros/cell_value"/>\n
</tal:block>\n </tal:block>\n
</tal:block>\n </tal:block>\n
......
123 124
\ No newline at end of file \ 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