Commit f8200611 authored by Vincent Pelletier's avatar Vincent Pelletier

2006-06-20 Vincent

Correct form button values when in a dialog.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8090 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7d2227bc
......@@ -73,7 +73,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
-->\n
</tal:block>\n
<tal:block metal:define-macro="master">\n
<tal:block tal:define="dialog_type string:View">\n
<tal:block tal:define="dialog_type dialog_type | string:">\n
<tal:block metal:use-macro="here/list_dialog_master/macros/master">\n
<tal:block metal:fill-slot="main">\n
<div class="dialog_box">\n
......
......@@ -72,9 +72,11 @@ along with this program; if not, write to the Free Software\n
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
-->\n
</tal:block>\n
<tal:block metal:use-macro="here/dialog/macros/master">\n
<tal:block metal:fill-slot="main">\n
<tal:block metal:use-macro="here/form/macros/master" />\n
<tal:block tal:define="dialog_type string:View">\n
<tal:block metal:use-macro="here/dialog/macros/master">\n
<tal:block metal:fill-slot="main">\n
<tal:block metal:use-macro="here/form/macros/master" />\n
</tal:block>\n
</tal:block>\n
</tal:block>
......
......@@ -99,7 +99,7 @@ IDEAS:\n
global selection_index request/selection_index | nothing;\n
global selection_url python: selection_name and here.portal_selections.getSelectionListUrlFor(selection_name,REQUEST=request) or None;\n
\n
global current_url python: dialog_id and url + \'/\' + dialog_id or None;\n
current_url python: dialog_id and \'%s/%s\' % (url, dialog_id) or None;\n
global current_action python: current_url and here.ERP5Site_getCurrentAction(current_url, actions) or None;\n
form_pickle request/form_pickle | nothing;\n
form_signature request/form_signature | nothing;\n
......
2006-06-20 Vincent
Correct form button values when in a dialog.
2006-06-15 Vincent
Initial commit.
Valid XHTML1.0 Strict + CSS 2.0.
\ 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