{% extends "base.html" %} {% block content %}
{% for status, tasks in columns.items() %}

{{ status }} ({{ tasks|length }})

{% for task in tasks %}
{{ task.title }} {% if task.description %} {{ task.description }} {% endif %} PIC: {{ task.pic or '–' }} Mitra: {{ task.mitra or '–' }} Open: {{ task.date_open[:10] if task.date_open else '–' }} {% if task.date_closed %} Closed: {{ task.date_closed[:10] }} {% endif %} {% if task.lastupdate %} Update: {{ task.lastupdate }} {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}