{% if user %}
Welcome, {{ user.email }}
{% else %} Login {% endif %}

Todo List

{% for todo in todos %}
{{ todo.title }}
{% endfor %}