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

At most seven choices

Today

Only current and undated tasks appear here. Future tasks can wait.

Quick add
{% for task in tasks %} {{ task_card(task) }} {% else %}

Your Today view is clear

There is nothing you need to choose from right now.

{% endfor %}
{% endblock %}