{% if step.destUser|length > 0 or step.destUserGroups|length > 0 %}
{{ 'workflow.For'|trans ~ ' : ' }}
{% for d in step.destUser %}{{ d|chill_entity_render_string({'at_date': step.previous.transitionAt}) }}{% if not loop.last %}, {% endif -%}{% endfor -%}
{%- if step.destUser|length > 0 and step.destUserGroups|length > 0 %}, {% endif -%}
{%- for d in step.destUserGroups %}{{ d|chill_entity_render_box }}{% if not loop.last %}, {% endif %}{% endfor -%}
{% endif %}
{% if step.ccUser|length > 0 %}
{{ 'workflow.Cc'|trans ~ ' : ' }}
{% for u in step.ccUser %}{{ u|chill_entity_render_string({'at_date': step.previous.transitionAt }) }}{% if not loop.last %}, {% endif %}{% endfor %}