## -*- coding: utf-8 -*- <%! import mpulsweb.lib.helper.filters as F %> % for appointment in c.remindlist.getDatasets(): <% description = F.shorten(appointment.description, 120) %> % endfor % if len(c.remindlist.getDatasets()) <= 0: % endif
${_('Date')} ${_('Description')} ${_('Actions')}
${h.dd_mm_YYYY(appointment.getStartDate())} ${appointment.title | F.NA} ${self.showAppointmentActions(appointment)} % if h.hasRole(['cm']): ${self.showKeepActiveActions(appointment)} % endif
${description | F.NA}
${_('No reminder found')}
<%def name="showAppointmentActions(appointment)"> ## Default function <%def name="showKeepActiveActions(appointment)"> ## Default function