Commit e7f2daa5 authored by Christophe Dumez's avatar Christophe Dumez

- Added ids for buttons in dialogs to help distiguish them. This is usefull...

- Added ids for buttons in dialogs to help distiguish them. This is usefull for zelenium tests and it might be too for css

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9399 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 65ffe728
......@@ -88,9 +88,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
<tal:block metal:define-slot="main" />\n
<tal:block metal:define-slot="bottom" />\n
</div>\n
<input value="Cancel" name="Base_cancel:method" type="submit" i18n:translate="" i18n:domain="ui" />\n
<input tal:condition="python: form.update_action!=\'\'" value="Update" name="Base_showUpdateDialog:method" type="submit" i18n:translate="" i18n:domain="ui" />\n
<input tal:attributes="value python: here.Base_getFormViewDialogActionButtonTitle(form); name python: \'%s:method\' % (form_action, )" type="submit" i18n:translate="" i18n:domain="ui" />\n
<input id="dialog_cancel_button" value="Cancel" name="Base_cancel:method" type="submit" i18n:translate="" i18n:domain="ui" />\n
<input tal:condition="python: form.update_action!=\'\'" id="dialog_update_button" value="Update" name="Base_showUpdateDialog:method" type="submit" i18n:translate="" i18n:domain="ui" />\n
<input tal:attributes="value python: here.Base_getFormViewDialogActionButtonTitle(form); name python: \'%s:method\' % (form_action, )" id="dialog_submit_button" type="submit" i18n:translate="" i18n:domain="ui" />\n
</tal:block>\n
</tal:block>\n
</tal:block>\n
......
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