{% extends "layout.html" %} {% block body %}
New Todo
{%- for todo in todos %} {%- endfor %}
Id Todo Item Created Done Action
{{ todo.id }} {{ todo.content }} {%- if todo.done %} Completed {%- else %} Pending {%- endif %} {{ todo.created_at.strftime('%d-%m-%Y') }} Edit Delete

{% endblock %}