Commit 1a5ee8d7 authored by Lucas Carvalho's avatar Lucas Carvalho

2011-04-12 lucas

* Fixed an issue where wizard.css should be imported only once.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45343 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 40c6dbf4
......@@ -75,12 +75,13 @@ IDEAS:\n
tal:attributes="type python:\'text/css\'">\n
</style>\n
</tal:block>\n
<tal:block tal:define="dummy python: css_list.extend(field.get_css_list(REQUEST=request) + [\'wizard.css\'])" />\n
<tal:block tal:define="dummy python: css_list.extend(field.get_css_list(REQUEST=request))" />\n
<tal:block tal:define="dummy python: js_list.extend(field.get_javascript_list(REQUEST=request))" />\n
</tal:block>\n
</tal:block>\n
</tal:block>\n
<tal:block tal:repeat="css python: css_list">\n
<tal:block tal:define="dummy python: css_list.append(\'wizard.css\')"\n
tal:repeat="css python: css_list">\n
<link tal:attributes="href css" type="text/css" rel="stylesheet" />\n
</tal:block>\n
<tal:block tal:repeat="js python: js_list">\n
......
2011-04-12 lucas
* Fixed an issue where wizard.css should be imported only once.
2011-04-08 lucas
* Fixed expression once the last step of configuration there is no form object.
......
517
\ No newline at end of file
518
\ 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