## -*- coding: utf-8 -*- <%! import mpulsweb.lib.helper.filters as F %> <%inherit file="/casemanagement/main.mako" /> <%def name="buildNavipath()"> ${parent.buildNavipath()}
  • ${_('Selected case documents')}
  • ${_('Logbook')}
  • Tagebuch
    % if h.hasRole(['cm']):
    % endif
    % if c.logbook.hasEntries(): % for entry in c.logbook.getEntries(): <% notice = F.shorten(entry.getNotice(), 190) %> % endfor % else: % endif
    ${_('Date')} ${_('Editor')} ${_('Type')} ${_('Duration (min)')} ${_('Actions')}
    ${entry.getDate()} ${entry.getTime()} ${entry.getEditor()} ${entry.getKind()} ${entry.getDuration()} Eintrag ansehen % if h.hasRole(['cm']) and entry.getKindAsInt() != 0 and session.get('case').getState().getState() == 1: ${_('delete')} % endif
    ${notice | F.NA}
    ${_('No entries found')}

    Auswertung

    <%include file="/logbook/evaluation.mako"/> <%include file="/logbook/evaluation_typ.mako"/>