add fields for report owner and for flagging a report as public

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3907 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2010-06-27 13:11:17 +00:00
parent 24315118a6
commit 5b1ce772de

View file

@ -73,6 +73,15 @@ class IReport(ITemplate):
title=_(u'Description'),
description=_(u'A brief description of the report.'),
required=False,)
owner = schema.ASCIILine(
title=_(u'Owner'),
description=_(u'The user ID of the owner of the report.'),
required=True,)
public = schema.Bool(
title=_(u'Public'),
description=_(u'Check this field to make the report available '
u'to others.'),
required=False,)
manager = Attribute('The manager of this message object')