{% extends "base.html" %} {% block content %}
Today {{ focus_date }}
{% if items %} {% for item in items %}
{{ item.title }} {% if item.project_name %}{{ item.project_name }}{% endif %} {% if item.estimated_minutes %}~{{ item.estimated_minutes }}min{% endif %} {% if item.due_date %}{{ item.due_date }}{% endif %}
{% endfor %} {% else %}
No focus items for this day
{% endif %} {% if available_tasks %}

Add to Focus

{% for t in available_tasks[:15] %}
{{ t.title }} {% if t.project_name %}{{ t.project_name }}{% endif %} {% if t.due_date %}{{ t.due_date }}{% endif %}
{% endfor %}
{% endif %} {% endblock %}