Commit 5f9e3a9f authored by Kevin Deldycke's avatar Kevin Deldycke

Fix default string.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8206 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 999838b8
......@@ -100,11 +100,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<tr tal:condition="request/dialog_category | nothing"\n
tal:define="dialog_category request/dialog_category | nothing">\n
<td i18n:translate="" i18n:domain="ui" \n
tal:content="python:{\'object_exchange\':\'Exchange Select:\',\n
\'object_print\':\'Print Select:\',\n
\'object_search\':\'Search Select:\',\n
\'object_report\':\'Report Select:\',\n
}.get(dialog_category, \'Select:\')">Search Type:</td>\n
tal:content="python:{ \'object_exchange\': \'Select Exchange\'\n
, \'object_print\' : \'Select Print\'\n
, \'object_search\' : \'Select Search\'\n
, \'object_report\' : \'Select Report\'\n
}.get(dialog_category, \'Select\')">Search Type</td>\n
<td valign="middle" align="right" nowrap\n
tal:define="actions python:filtered_actions[dialog_category]">\n
<input type="hidden" name="dialog_category" value="dialog_category"\n
......
......@@ -93,11 +93,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<tr tal:condition="request/dialog_category | nothing"\n
tal:define="dialog_category request/dialog_category | nothing">\n
<td i18n:translate="" i18n:domain="ui" \n
tal:content="python:{\'object_exchange\':\'Exchange Select:\',\n
\'object_print\':\'Print Select:\',\n
\'object_search\':\'Search Select:\',\n
\'object_report\':\'Report Select:\',\n
}.get(dialog_category, \'Select:\')">Search Type:</td>\n
tal:content="python:{ \'object_exchange\': \'Select Exchange\'\n
, \'object_print\' : \'Select Print\'\n
, \'object_search\' : \'Select Search\'\n
, \'object_report\' : \'Select Report\'\n
}.get(dialog_category, \'Select\')">Search Type</td>\n
<td valign="middle" align="right" nowrap\n
tal:define="actions python:filtered_actions[dialog_category]">\n
<input type="hidden" name="dialog_category" value="dialog_category"\n
......
2006-06-28 Kevin
* Fix default string.
2006-06-21 Kevin
* In editable mode, enclose main content in a div to act as a fieldgroup.
......
......@@ -82,11 +82,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<div tal:condition="python: len(dialog_actions) > 1"\n
class="dialog_selector">\n
<label for="dialog_selector"\n
tal:content="python:{\'object_exchange\':\'Exchange Select:\',\n
\'object_print\':\'Print Select:\',\n
\'object_search\':\'Search Select:\',\n
\'object_report\':\'Report Select:\',\n
}.get(dialog_category, \'Select:\')"\n
tal:content="python: { \'object_exchange\': \'Select Exchange\'\n
, \'object_print\' : \'Select Print\'\n
, \'object_search\' : \'Select Search\'\n
, \'object_report\' : \'Select Report\'\n
}.get(dialog_category, \'Select\')"\n
i18n:translate="" i18n:domain="ui"></label>\n
<select name="dialog_select" id="dialog_selector"\n
tal:attributes="onChange string:submitAction(this.form,\'${url}/Base_doDialog\')">\n
......
2006-06-28 Kevin
* Fix default string.
2006-06-28 vincent
* Add compatibility layer to support forms designed for html_style.
......
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