Todoist Backup ({{ date }})

{% for project in projects %}

{{ 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 %}
Attachments:
{% endif %} {% if task.comments %}
Comments:
    {% for comment in task.comments %}
  • {{ comment.content }} ({{ comment.posted_at }})
  • {% endfor %}
{% 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 %}
Attachments:
{% endif %} {% if task.comments %}
Comments:
    {% for comment in task.comments %}
  • {{ comment.content }} ({{ comment.posted_at }})
  • {% endfor %}
{% endif %}
{% endfor %}
{% endfor %}