{literal} {% const states = o.states; const orders = o.orders; const state_icons = o.state_icons; const state_counters = o.state_counters; %} {% for (state in states) { %} {% const state_icon = state_icons[state] || ''; const state_counter = state_counters[state] || '0'; const state_color = states[state]['options']['style']['color'] || '#fff'; const state_fontWeight = states[state]['options']['style']['font-weight'] || 'normal'; const state_name = states[state]['name']; %}
{%=states[state]['name']%}
{%=state_counter%}
{% for (order of orders) { %} {% if (order.state_id == state) { %} {% include('template-order-list-kanban-card', { state_name, state, order, state_color }); %} {% } %} {% } %}
{% } %} {/literal}