<% for (const [i, auditor] of group.auditors.entries()) { %>
<%- auditor.name %>
<% if (group.audit_order === 0) { %>
<% if (auditor.role && auditor.role.trim()) { %>
<%- auditor.role %>
<% } %>
<% } else { %>
<%- auditor.company %>
<% if (auditor.role && auditor.role.trim()) { %>
- <%- auditor.role %>
<% } %>
<% } %>
<% if (auditor.status === auditConst.status.checked) { %>
<% } else if (ctx.helper._.includes([auditConst.status.checkNo], auditor.status)) { %>
<% } else if(auditor.status === auditConst.status.checkAgain) {%>
<% } 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) { %>
<% } %>
<% } %>