Commit 11632fc2 authored by Fabien Morin's avatar Fabien Morin

make possible to return on the form page, even if the form has been submitted,...

make possible to return on the form page, even if the form has been submitted, this permit to see what have been entered in the form, but it's not possible to modify it.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24204 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent eb208e45
......@@ -98,7 +98,8 @@
background: #DDF;\n
}\n
\n
.submission_wizard .actions li .enable{\n
.submission_wizard .actions li .enable,\n
.submission_wizard .actions li .disable{\n
text-decoration: underline;\n
}\n
\n
......
......@@ -75,15 +75,23 @@
<li>\n
<tal:block tal:condition="python: here.getValidationState() in state_dict[action[\'name\']]">\n
<tal:block tal:condition="python: current_action[\'name\'] != action[\'name\']">\n
<a tal:attributes="href python: \'%s%s%s\' % (action[\'url\'], \'?\' in action[\'url\'] and \'&amp;\' or \'?\', http_parameters)"\n
><span class="enable" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span></a>\n
<a tal:attributes="href python: \'%s%s%s\' % (action[\'url\'], \'?\' in action[\'url\'] and \'&amp;\' or \'?\', http_parameters)">\n
<span class="enable" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span>\n
</a>\n
</tal:block>\n
<tal:block tal:condition="python: current_action[\'name\'] == action[\'name\']">\n
<span class="current" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span>\n
</tal:block>\n
</tal:block>\n
<tal:block tal:condition="python: here.getValidationState() not in state_dict[action[\'name\']]">\n
<span class="disable" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span>\n
<a tal:attributes="href python: \'%s%s%s\' % (action[\'url\'], \'?\' in action[\'url\'] and \'&amp;\' or \'?\', http_parameters)">\n
<tal:block tal:condition="python:current_action[\'name\'] == action[\'name\']">\n
<span class="disable current" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span>\n
</tal:block>\n
<tal:block tal:condition="python:current_action[\'name\'] != action[\'name\']">\n
<span class="disable" i18n:translate="" i18n:domain="ui" tal:content="python:action_dict.get(action[\'name\'])">action_name</span>\n
</tal:block>\n
</a>\n
</tal:block>\n
<span class="fleche" tal:condition="python: actions.index(action) < len(actions)-(action_not_in_dict_count+1)">\n
<img alt="Arrow image" src="img/fleche.png"/>\n
......
......@@ -2,7 +2,8 @@
* update some listbox to display the last application in first
* update css
* add some rights on assignee to the validated state on egov_universal_workflow. This avoid a security error if an agent have an assigned application and refuse it (it will change the state of the application to validated and redirect the agent on it).
* update some listbox to be able to handle searchable text and to be able to sort application by modification date (descending).
* update some listbox to be able to handle searchable text and to be able to sort application by modification date (descending)
* make possible to return on the form page, even if the form has been submitted, this permit to see what have been entered in the form, but it's not possible to modify it.
2008-10-10 fabien
bring some corrections after the Mme Ba review :
......
395
\ No newline at end of file
397
\ 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