diff -r f3b3d2beb266 -r a76066afc55b src/pyams_content/component/paragraph/zmi/container.py --- a/src/pyams_content/component/paragraph/zmi/container.py Tue Nov 27 15:36:41 2018 +0100 +++ b/src/pyams_content/component/paragraph/zmi/container.py Tue Nov 27 15:37:04 2018 +0100 @@ -25,11 +25,11 @@ from pyams_content.component.association.interfaces import IAssociationContainer from pyams_content.component.association.zmi import AssociationsContainerView -from pyams_content.component.paragraph import BaseParagraph +from pyams_content.component.paragraph import BaseParagraph, IParagraphTitle from pyams_content.component.paragraph.interfaces import IBaseParagraph, IParagraphContainer, IParagraphContainerTarget, \ IParagraphFactorySettings from pyams_content.component.paragraph.zmi.interfaces import IParagraphContainerTable, IParagraphContainerView, \ - IParagraphInnerEditor, IParagraphTitleToolbar, IParagraphTitleValue + IParagraphInnerEditor, IParagraphTitleToolbar from pyams_content.interfaces import MANAGE_CONTENT_PERMISSION from pyams_content.shared.common.zmi import WfModifiedContentColumnMixin from pyams_content.zmi import pyams_content @@ -271,7 +271,7 @@ return '{0}'.format(super(ParagraphContainerBaseTitleColumn, self).renderCell(item)) def getValue(self, obj): - adapter = self.request.registry.queryMultiAdapter((obj, self.request), IParagraphTitleValue) + adapter = self.request.registry.queryMultiAdapter((obj, self.request), IParagraphTitle) if adapter is not None: return adapter return II18n(obj).query_attribute('title', request=self.request) or BaseParagraph.empty_title