Commit d1a3984c authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix a condition of using table style listbox.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26705 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4c43e7a2
......@@ -142,10 +142,10 @@
<tal:block tal:condition="python: list_style == \'search\'">\n
<span metal:use-macro="real_context/ListBox_asSearchStyleHTML/macros/main"/>\n
</tal:block>\n
<tal:block tal:condition="python: is_web_mode and list_style != \'table\'">\n
<tal:block tal:condition="python: list_style != \'search\' and is_web_mode">\n
<span metal:use-macro="real_context/ListBox_asTableStyleHTML/macros/main"/>\n
</tal:block>\n
<tal:block tal:condition="python: not is_web_mode and list_style != \'search\'">\n
<tal:block tal:condition="python: list_style != \'search\' and not is_web_mode">\n
<span metal:use-macro="real_context/ListBox_asStandardHTML/macros/main"/>\n
</tal:block>\n
</tal:block>\n
......
723
\ No newline at end of file
724
\ 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