Commit ffb5472b authored by Aurel's avatar Aurel

fix compution of number of column in index_html


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5475 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ea89b895
......@@ -107,7 +107,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<tr tal:define="module_list python:here.ERP5Site_getModuleItemList();\n
module_len python:len(module_list);\n
col_size python:12;\n
col_len python:(module_len + col_size) / col_size">\n
col_len python:module_len%col_size and (module_len + col_size) / col_size or (module_len) / col_size">\n
<td>\n
<a href="http://www.erp5.org/"><img src="images/erp5_logo.png" alt="ERP5 Logo" /></a>\n
</td>\n
......
2006-01-31 aurel
* fix compution of number of column in index_html
2006-01-31 jerome
* quick hack to make listbox rendering in report tree / domain tree work again.
2006-01-31 aurel
* fix TemplateTool_installBusinessTemplateListAction
......
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