# HG changeset patch # User Thierry Florac # Date 1517846267 -3600 # Node ID 05668b69988778022da67e10c573bc649a4553e7 # Parent e2d871b302362148df0d3137911204dc240b4776 Added marker interface on properties edit form diff -r e2d871b30236 -r 05668b699887 src/pyams_content/shared/common/zmi/properties.py --- a/src/pyams_content/shared/common/zmi/properties.py Wed Jan 31 17:18:51 2018 +0100 +++ b/src/pyams_content/shared/common/zmi/properties.py Mon Feb 05 16:57:47 2018 +0100 @@ -22,6 +22,7 @@ from pyams_skin.interfaces import IInnerPage, IPageHeader from pyams_skin.layer import IPyAMSLayer from pyams_utils.interfaces import VIEW_SYSTEM_PERMISSION +from pyams_zmi.interfaces import IPropertiesEditForm from pyams_zmi.interfaces.menu import IContentManagementMenu, IPropertiesMenu from pyams_zmi.layer import IAdminLayer @@ -70,7 +71,7 @@ @pagelet_config(name='properties.html', context=IWfSharedContent, layer=IPyAMSLayer, permission=MANAGE_CONTENT_PERMISSION) -@implementer(IWidgetForm, IInnerPage) +@implementer(IPropertiesEditForm, IWidgetForm, IInnerPage) class SharedContentPropertiesEditForm(AdminEditForm): """Shared content properties edit form"""