Commit 1013468a authored by Romain Courteaud's avatar Romain Courteaud

[erp5_xhtml_style] colspan value must not be higher than the count of header cells

parent d8109a57
......@@ -478,7 +478,7 @@
<!-- Hide row on no search criterion-->
<tr tal:condition="hide_rows_on_no_search_criterion"
class="listbox_missing_search_criterion">
<td tal:attributes="colspan python: len(here.getSearchValueList()) + 1">
<td tal:attributes="colspan python: len(here.getSearchValueList()) + show_select_column + show_anchor_column">
<span i18n:translate="" i18n:domain="ui">
To display actual content, please fill in one or more search criterion.
</span>
......@@ -487,7 +487,7 @@
<!-- No results. -->
<tr tal:condition="python: total_line == 0 and not hide_rows_on_no_search_criterion">
<td tal:attributes="colspan python: len(here.getSearchValueList()) + 1"
<td tal:attributes="colspan python: len(here.getSearchValueList()) + show_select_column + show_anchor_column"
class="listbox-table-no-result-row">
<span i18n:translate="" i18n:domain="ui">
No result.
......
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