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.agenda/tabellio/agenda/burevent.py

21 lines
428 B
Python

from zope import schema
from zope.interface import implements
from z3c.relationfield.schema import RelationChoice
from plone.formwidget.contenttree import ObjPathSourceBinder
from tabellio.agenda.interfaces import MessageFactory as _
from parlevent import IParlEvent, ParlEvent
class IBurEvent(IParlEvent):
pass
class BurEvent(ParlEvent):
implements(IBurEvent)
def klass(self):
return 'bureau-event'