{% extends 'base.html' %} {% block body %}

Add a todo

Your Todos

{% if allTodo|length==0 %} {% else %} {% for todo in allTodo %} {% endfor %} {% endif %}
S No Title Description Time Actions
{{loop.index}} {{todo.title}} {{todo.desc}} {{todo.date_created}} Delete Update
{% endblock body %}