{% extends "ui/templates/base/layout.html" %} {% block content %}
{% include "modules/employees/templates/employees/_my_workspace_tabs.html" %}

{{ board.label }}

{{ board.client.client_name if board.client else 'Unlinked Client' }} {% if board.client and board.client.client_code %} · {{ board.client.client_code }}{% endif %}

Total Tasks
{{ board.summary.total }}
Open
{{ board.summary.open }}
In Progress
{{ board.summary.in_progress }}
Blocked
{{ board.summary.blocked }}
Overdue
{{ board.summary.overdue }}
Completed
{{ board.summary.completed }}
{% for column in board.columns %}

{{ column.label }}

{{ column.tasks|length }}
{% for task in column.tasks %}

{{ task.task_name }}

{% if task.description %}

{{ task.description }}

{% endif %}
#{{ task.sequence_no }}
{{ task.priority_label }} {{ task.date_bucket }} Target {{ task.internal_target_date or '-' }}
{% if task.latest_comment %}

Latest: {{ task.latest_comment.message }}

{% endif %}
{% else %}
No tasks.
{% endfor %}
{% endfor %}
{% endblock %}