{literal} {% const orders = o.orders; const states = o.states; const a_users = o.assigned_users; const assignment_counters = o.counters.assignment_counters; %} {% for (user_id in a_users) { %}
{%=a_users[user_id]['name']%}
{%=assignment_counters[user_id]%}
{% for (order of orders) { %} {% if (order.assigned_contact_id == user_id) { %} {% const state_color = states[order.state_id]['options']['style']['color'] || '#FFF'; const state_name = states[order.state_id]['name'] || ''; %} {% include('template-order-list-kanban-users-card', { state_name, user_id, order, state_color }); %} {% } %} {% } %}
{% } %} {/literal}