{% extends "base.html" %} {% block content %}

Here are your goals.

{% for task in tasks %}

{{ task.text }}

{% endfor %}

Did you compleate your goals today?

{% for field in form %}

{% if not field.flags.hidden %} {{field.label}}: {% endif %} {{field}}

{% endfor %}

Days you succeeded.

{% for day in days %}

{{day.date}}

{% endfor %} {% endblock content %}