Back to Python Mini Projects

Index

projects/Todo_app/templates/index.html

latest596 B
Original Source

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

Todo Webapp

{% if update_task %} {% else %} {% endif %}

{% if tasks %}

TaskDateOperation
{% for task in tasks %}{{ task.content }}{{ task.pub_date.date() }}
{% endfor %}
{% else %}

There is no task !!

{% endif %} {% endblock %}