Commit 534d2e23 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Always add a prefix to each value so that scripts can distinguish actions...

Always add a prefix to each value so that scripts can distinguish actions easily (e.g. workflow WORKFLOW_NAME).


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@665 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1f2de683
......@@ -64,17 +64,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<option disabled>-- workflows --</option>
<span tal:repeat="action workflow_actions">
<option value="1" tal:content="action/name"
tal:attributes="value action/url">Saut</option>
tal:attributes="value python: 'workflow ' + action['url']">Saut</option>
</span>
<option disabled>-- object --</option>
<span tal:repeat="action object_actions">
<option value="1" tal:content="action/name"
tal:attributes="value action/url">Saut</option>
tal:attributes="value python: 'object ' + action['url']">Saut</option>
</span>
<!--option disabled>-- folder --</option>
<span tal:repeat="action folder_actions">
<option value="1" tal:content="action/name"
tal:attributes="value action/url">Saut</option>
tal:attributes="value python: 'folder ' + action['url']">Saut</option>
</span-->
</select></td>
<td valign="bottom" align="left" nowrap> &nbsp;
......
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