ToDoリスト
追加
{% for task in tasks %}
{% if task.done %}
{{ task.title }}
(完了)
{% else %} {{ task.title }} {% endif %} [
完了/戻す
] [
削除
]
{% endfor %}