{% extends "base.html" %} {% block content %}
Today {{ focus_date }}
{% if items %} {% for domain in hierarchy %}
{{ domain.label }}
{% for area in domain.areas %} {% if area.label %}
{{ area.label }}
{% endif %} {% for project in area.projects %} {% if project.label %}
{{ project.label }}
{% endif %} {% for item in project.rows %}
{% with reorder_url="/focus/reorder", item_id=item.id, extra_fields={"focus_date": focus_date|string} %} {% include 'partials/reorder_arrows.html' %} {% endwith %}
{% if item.task_id %} {% if item.title %} {{ item.title }} {% else %} [Deleted] {% endif %} {% if item.estimated_minutes %}~{{ item.estimated_minutes }}min{% endif %} {% if item.due_date %}{{ item.due_date }}{% endif %} {% elif item.list_item_id %} {% if item.list_item_content %} {{ item.list_item_content }} {% else %} [Deleted] {% endif %} {% if item.list_name %}{{ item.list_name }}{% endif %} {% endif %}
{% endfor %} {% endfor %} {% endfor %}
{% endfor %} {% else %}
No focus items for this day
{% endif %}

Add to Focus

Tasks List Items
{% if current_source_type == 'tasks' %} {% endif %} {% if current_search or current_domain_id or current_area_id or current_project_id %} Clear {% endif %}
{% if current_source_type == 'tasks' %} {% for t in available_tasks %}
{{ 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 %} {% if available_tasks|length > 25 %}
{% endif %} {% elif current_source_type == 'list_items' %} {% for li in available_list_items %}
{{ li.content }} {% if li.list_name %}{{ li.list_name }}{% endif %}
{% else %}
No available list items matching filters
{% endfor %} {% if available_list_items|length > 25 %}
{% endif %} {% endif %}
{% endblock %}