This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
tabellio.friendshipgroups/tabellio/friendshipgroups/group.py

17 lines
478 B
Python
Raw Normal View History

2015-02-09 15:18:53 +01:00
from five import grok
from zope import schema
from zope.interface import implements
from plone.directives import form, dexterity
from plone.dexterity.content import Container
from plone.app.textfield import RichText
from tabellio.friendshipgroups import MessageFactory as _
class IGroup(form.Schema):
memorandum = RichText(title=_(u'Memorandum'), required=False)
minutes = RichText(title=_(u'Minutes'), required=False)
class Group(Container):
implements(IGroup)