{% extends 'todo_app/base.html' %} {% block title %}To-Do List{% endblock %} {% block content %}

To-Do List


Add New Task
{% for task in tasks %}
{{ task.title }}

{{ task.description }}

{% if task.completed %} Completed {% else %} Mark as Completed {% endif %}
{% empty %}

No tasks available. Start by adding a task!

{% endfor %}
{% endblock %}