Your login is not linked to an employee profile yet.
{% else %}
{% set ns = namespace(count=0) %}
{% if work_payload %}
{% for column in work_payload.columns if column.code == 'blocked' %}
{% for card in column.cards %}
{% set ns.count = ns.count + 1 %}
Blocked / Waiting
{{ card.client_name }}
{{ card.service_name }} ยท FY {{ card.financial_year }}
{{ card.blocked_count }} blocked task(s). Latest note: {{ card.latest_comment.comment_text if card.latest_comment and card.latest_comment.comment_text is defined else '-' }}
Open / Follow Up
{% endfor %}
{% endfor %}
{% endif %}
{% if ns.count == 0 %}
No blocked or client-pending work is pending.
{% endif %}
{% endif %}