Tasks · {{progress['open']}} of {{progress['total']}} left
%if tasks:
%for t in tasks:
%late = t.status != 'done' and t.due_date and t.due_date < insights.today()
-
{{t.title}}
{{'Overdue' if late else status_label(t.status)}}
{{t.owner.name if t.owner_id else 'No owner'}}
%end
%else:
No tasks on this project yet.
%end
Commitments
%if commitments:
%for c in commitments:
%shown = insights.commitment_display_status(c)
-
{{c.description}}
{{status_label(shown)}}
{{c.person.name if c.person_id else 'Nobody'}}
%end
%else:
Nobody has promised anything on this project.
%end
Where it came from
%if notes:
%for n in notes:
- {{n.title}} {{n.occurred_on.strftime('%b %-d') if n.occurred_on else ''}}
%end
%else:
Not linked to a note yet.
%end
Attachments
%if attachments:
%end