{% extends "base.html" %} {% from "tasks/_task_card.html" import task_card %} {% block title %}Tasks ยท Steady{% endblock %} {% block content %}

Your complete workspace

Tasks

Add task
{% for task in tasks %} {{ task_card(task) }} {% else %}

Nothing here right now

Try another filter or capture one small task.

{% endfor %}
{% endblock %}