>
<% _.each(employees, function(employee) { %>
<% if(employee.userType == 'POS') {%> <% if (employee.isPosUser) { %> <% if (employee.isEmployee) { %>
{Literal}POS User + Employee{/Literal}
<% } %> <% } %> <% if (employee.isPosUser) { %> <% if (!employee.isEmployee) { %>
{Literal}POS User{/Literal}
<% } %> <% } %> <% if (!employee.isPosUser) { %> <% if (employee.isEmployee) { %>
{Literal}Employee{/Literal}
<% } %> <% } %> <% } else {%>
{Literal}Management User{/Literal}
<% } %> <% if (employee.name != "") { %>
<%= employee.name %>
<% } %> <% if (employee.name == "") { %>
<%= employee.posUserId %>
<% } %> <% if (employee.group != "") { %>
{Literal}User Group{/Literal}: <%= employee.group %>
<% } %> <% if (employee.group == "") { %>
{Literal}User Group: N/A{/Literal}
<% } %>
{Literal}Active{/Literal}: <%= employee.isActive ? '{Literal}Yes{/Literal}' : '{Literal}No{/Literal}' %>
style="font-size: .95rem; color: gray;"> {Literal}Current Hours{/Literal}: <%= employee.currentHours %>
<% }); %>
add