%! import mpulsweb.lib.helper.filters as F %>
${_('Start')} | ${h.dd_mm_yyyy_HH_MM(c.appointment.getStartDate())} | |
${_('End')} | ${h.dd_mm_yyyy_HH_MM(c.appointment.getEndDate()) | F.NA} | |
${_('Duration')} | ${c.appointment.getDuration() | F.NA} | |
${_('Type of event')} | % if c.appointment.type == 0:${_('regular event')} | % else:${_('reminder')} | % endif
${_('Title')} | ${c.appointment.title | F.NA} | |
${_('Description')} | <% description = F.nl_to_br(h.escape(F.NA(c.appointment.description))) %>${description} |