% def stateStyle = { stateIn -> def state = (stateIn instanceof String) ? stateIn : stateIn.name(); if ('ok' == state) { return "color: green;"; } else if ('error' == state) { return "color: red;"; } else if ("warning" == state || "skipped" == state) { return "color: orange;"; } return ""; } def stateName = { state -> return state.name().toUpperCase(); } %> ${ util.include('header', [title:'Setup: ' + page.title]) }
${entry.message?.replace('\n', '
')}