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:
parent
24315118a6
commit
5b1ce772de
1 changed files with 9 additions and 0 deletions
|
@ -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')
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue