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.pcfviews/tabellio/pcfviews/event.py

14 lines
344 B
Python

from five import grok
from tabellio.agenda.event import EventBaseView, IEvent
class View(grok.View, EventBaseView):
grok.context(IEvent)
grok.require('zope2.View')
def next_event_url(self):
return EventBaseView.next_event_url(self)
def previous_event_url(self):
return EventBaseView.previous_event_url(self)