{% if current_filter == "done" %} Completed {% elif current_filter == "open" %} Open tasks {% else %} All tasks {% endif %}

{{ todos | length }}
{% if todos %}
{% for todo in todos %} {% include "app/_item.html" %} {% endfor %}
{% else %}

No tasks in this view.

{% endif %}