<% for (const [i, auditor] of group.auditors.entries()) { %>
<%- auditor.name %>
<%- auditor.role %>
<% if (auditor.status === auditConst.status.checked) { %>
<% } else if (ctx.helper._.includes([auditConst.status.checkNo], auditor.status)) { %>
<% } else if (auditor.status === auditConst.status.checking) { %>
<% } %>
<% if (auditor.status !== auditConst.status.uncheck && auditor.opinion) { %>
<%- auditor.opinion %>
<% } %>
<% if (auditor.status === auditConst.status.checking && auditor.aid === ctx.session.sessionUser.accountId) { %>
<% } %>
<% } %>