{{ project.name }} {% if project.is_archived %}[Archived]{% endif %}
ID: {{ project.id }} | Color: {{ project.color }} | Created: {{ project.created_at }}
Active Tasks
{% for task in project.tasks %}
Content: {{ task.content }}
ID: {{ task.id }} | Due: {{ task.due }} | Priority: {{ task.priority }}
{% if task.attachments %}
{% endif %}
{% if task.comments %}
{% endif %}
{% endfor %}
Completed Tasks
{% for task in project.completed_tasks %}
Content: {{ task.content }}
ID: {{ task.id }} | Due: {{ task.due }} | Priority: {{ task.priority }}
{% if task.attachments %}
{% endif %}
{% if task.comments %}
{% endif %}
{% endfor %}
{% for comment in task.comments %}- {{ comment.content }} ({{ comment.posted_at }})
{% endfor %}