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