Commit 2339ba04 authored by Jérome Perrin's avatar Jérome Perrin

Display fields from all groups, not only the default ones.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15731 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e7d56127
......@@ -68,7 +68,7 @@
tal:define="dummy python: request.set(\'here\',here); ">\n
\n
\n
<tal:block tal:repeat="group python: [\'Default\', \'left\', \'right\', \'center\']">\n
<tal:block tal:repeat="group python: [g for g in form.get_groups() if g not in (\'bottom\', \'hidden\')]">\n
<tal:block tal:define="field_list python: form.get_fields_in_group(group)">\n
<tal:block tal:condition="field_list">\n
<table splitbyrow="1" repeatrows="0" repeatcols="0" style="AttributesTable" >\n
......
......@@ -75,7 +75,7 @@
\n
<spacer height="100" tal:condition="form/get_fields"/>\n
\n
<tal:block tal:repeat="group python: [\'Default\', \'left\', \'right\', \'center\']">\n
<tal:block tal:repeat="group python: [g for g in form.get_groups() if g not in (\'bottom\', \'hidden\')]">\n
<tal:block tal:define="field_list python: form.get_fields_in_group(group)">\n
<tal:block tal:condition="field_list">\n
\n
......
43
\ No newline at end of file
44
\ 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