{% extends "base.html" %} {% block content %}
Today {{ focus_date }}
{% if items %}
{% for item in items %}
{% with reorder_url="/focus/reorder", item_id=item.id, extra_fields={"focus_date": focus_date|string} %} {% include 'partials/reorder_arrows.html' %} {% endwith %}
{{ 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 %}

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 %}
{% else %}
No available tasks matching filters
{% endfor %}
{% endblock %}