Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
62a54df0
Commit
62a54df0
authored
Apr 28, 2021
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xhtml style: replace /manage_properties by /manage_main because the path does not work anymore
parent
c1e1d647
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_glossary/GlossaryModule_getBusinessFieldWorkflowList.py
...5_glossary/GlossaryModule_getBusinessFieldWorkflowList.py
+1
-1
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_glossary/GlossaryModule_getTermDictListFromWorkflow.py
...p5_glossary/GlossaryModule_getTermDictListFromWorkflow.py
+1
-1
bt5/erp5_mobile/SkinTemplateItem/portal_skins/erp5_mobile_ui/context_actions_render.zpt
...em/portal_skins/erp5_mobile_ui/context_actions_render.zpt
+1
-1
bt5/erp5_xhtml_gadget_style/SkinTemplateItem/portal_skins/erp5_xhtml_gadget_core/ERP5Site_getContextBoxActionList.py
...rp5_xhtml_gadget_core/ERP5Site_getContextBoxActionList.py
+1
-1
product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/context_box_render.zpt
...Item/portal_skins/erp5_xhtml_style/context_box_render.zpt
+1
-1
product/ERP5/dtml/interactions.dtml
product/ERP5/dtml/interactions.dtml
+1
-1
No files found.
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_glossary/GlossaryModule_getBusinessFieldWorkflowList.py
View file @
62a54df0
...
...
@@ -77,7 +77,7 @@ for business_field in business_field_list:
line
.
edit
(
wf_item_path
=
wf_item_path
,
wf_item_type
=
type_
,
wf_item_title
=
wf_item_title
,
wf_item_edit_url
=
"%s/manage_
properties
"
%
wf_item
.
absolute_url
(),
wf_item_edit_url
=
"%s/manage_
main
"
%
wf_item
.
absolute_url
(),
wf_item_description
=
wf_item_description
,
reference
=
reference
,
term_list
=
term_list
...
...
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_glossary/GlossaryModule_getTermDictListFromWorkflow.py
View file @
62a54df0
...
...
@@ -76,7 +76,7 @@ for business_field in template_list:
line
.
edit
(
wf_item_path
=
wf_item_path
,
wf_item_type
=
wf_item_type
,
wf_item_title
=
wf_item_title
,
wf_item_edit_url
=
"%s/manage_
properties
"
%
wf_item
.
absolute_url
(),
wf_item_edit_url
=
"%s/manage_
main
"
%
wf_item
.
absolute_url
(),
wf_item_description
=
wf_item_description
,
reference
=
reference
,
term_list
=
term_list
...
...
bt5/erp5_mobile/SkinTemplateItem/portal_skins/erp5_mobile_ui/context_actions_render.zpt
View file @
62a54df0
...
...
@@ -134,7 +134,7 @@ XXX: Folder_filter accesses selection directly
<tal:block tal:condition="portal/portal_workflow/Base_getSourceVisibility">
<option value="1" disabled="disabled" i18n:translate="" i18n:domain="ui">-- Workflows --</option>
<tal:block tal:repeat="workflow python: portal.portal_workflow.getWorkflowValueListFor(here)">
<option tal:attributes="value python: '%s/manage_
properties
' % (workflow.absolute_url(), )" tal:content="workflow/title" />
<option tal:attributes="value python: '%s/manage_
main
' % (workflow.absolute_url(), )" tal:content="workflow/title" />
</tal:block>
</tal:block>
</tal:block>
...
...
bt5/erp5_xhtml_gadget_style/SkinTemplateItem/portal_skins/erp5_xhtml_gadget_core/ERP5Site_getContextBoxActionList.py
View file @
62a54df0
...
...
@@ -56,7 +56,7 @@ if portal.portal_workflow.Base_getSourceVisibility():
result
[
'workflow_list'
]
=
[{
"title"
:
"-- %s --"
%
translate
(
"Workflows"
),
"url"
:
""
}]
result
[
'workflow_list'
].
extend
([{
"title"
:
x
.
title
,
"url"
:
"%s/manage_
properties
"
%
x
.
absolute_url
()}
for
x
in
workflow_list
])
"url"
:
"%s/manage_
main
"
%
x
.
absolute_url
()}
for
x
in
workflow_list
])
# allowed types to add
visible_allowed_content_type_list
=
context
.
getVisibleAllowedContentTypeList
()
result
[
'visible_allowed_content_type_list'
]
=
[{
"title"
:
"Add %s"
%
x
,
...
...
product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/context_box_render.zpt
View file @
62a54df0
...
...
@@ -22,7 +22,7 @@
<tal:block tal:condition="portal/portal_workflow/Base_getSourceVisibility">
<option value="1" disabled="disabled" i18n:translate="" i18n:domain="ui">-- Workflows --</option>
<tal:block tal:repeat="workflow python: portal.portal_workflow.getWorkflowValueListFor(here)">
<option tal:attributes="value string:${workflow/absolute_url}/manage_
properties
" tal:content="workflow/title" />
<option tal:attributes="value string:${workflow/absolute_url}/manage_
main
" tal:content="workflow/title" />
</tal:block>
</tal:block>
</tal:block>
...
...
product/ERP5/dtml/interactions.dtml
View file @
62a54df0
...
...
@@ -6,7 +6,7 @@
<tr bgcolor="#eeeeee">
<th align="left" colspan="2">
<input type="checkbox" name="ids:list" value="&dtml-id;" />
<a href="&dtml.url_quote-id;/manage_
properties
">&dtml-id;</a>
<a href="&dtml.url_quote-id;/manage_
main
">&dtml-id;</a>
&dtml-title;
</th>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment