{% extends "base.html" %} {% block content %}
{{ stats.open_tasks or 0 }}
Open Tasks
{{ stats.in_progress or 0 }}
In Progress
{{ stats.done_this_week or 0 }}
Done This Week
{{ focus_items|length }}
Today's Focus

Today's Focus

View All
{% if focus_items %} {% for item in focus_items %}
{{ item.title }} {% if item.project_name %} {{ item.project_name }} {% endif %}
{% endfor %} {% else %}
No focus items for today
Set Focus
{% endif %}

Upcoming

{% if overdue_tasks %}
OVERDUE
{% for t in overdue_tasks %}
{{ t.title }} {{ t.due_date }}
{% endfor %} {% endif %} {% if upcoming_tasks %}
NEXT 7 DAYS
{% for t in upcoming_tasks %}
{{ t.title }} {{ t.due_date }}
{% endfor %} {% endif %} {% if not overdue_tasks and not upcoming_tasks %}
No upcoming deadlines
{% endif %}
{% endblock %}