{% if todos|length>0 %} {% for todo in todos %} {{todo.id}} {{todo.title}} {% if todo.completed %} Yes {% else %} No {% endif %} {% endfor %} {% endif %}