Commit 9043aeee authored by Romain Courteaud's avatar Romain Courteaud

Add a small hack, in order not to display   in PDF rendering.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@12505 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b619dd4e
......@@ -98,7 +98,7 @@
tal:content="python: str(value)"\n
tal:condition="not:item_list" />\n
<para style="TableStandard"\n
tal:content="python: [i[0] for i in item_list if i[1] == value][0]"\n
tal:content="python: [i[0].replace(\'&nbsp;\', \'\') for i in item_list if i[1] == value][0]"\n
tal:condition="item_list" />\n
</tal:block>\n
<tal:block tal:condition="python: value == None">\n
......
16
\ No newline at end of file
18
\ No newline at end of file
None
\ 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