{% extends "base.html" %} {% block content %}
Overdue
{{ state.aggregate.date_buckets.get("overdue", 0) }}

Past their due date

Today
{{ state.aggregate.date_buckets.get("today", 0) }}

Needs attention now

Tomorrow
{{ state.aggregate.date_buckets.get("tomorrow", 0) }}

Coming up next

Next 7 days
{{ state.aggregate.date_buckets.get("next_7_days", 0) }}

Near-term plans

Completion
{{ state.aggregate.completion_percent | round | int }}%

{{ state.aggregate.completed_actions }} completed tagged items

Travel profile

Planning pipeline

{{ stage_total }} tagged items
{% if stages %}
{% for stage in stages %}
{{ stage.name }} {{ stage.count }}
{% endfor %}
Uses the Travel Stage tag set returned by Curio.
{% else %}

No Travel Stage tags yet

Tagged planning items will form this project-wide pipeline.

{% endif %}

Next moves

Upcoming itinerary

View all
{% if upcoming %}
    {% for item in upcoming[:5] %}
  1. {{ item.bucket_label }} {{ item.figure.due_date or "—" }} {{ item.figure.title or "Untitled action" }} {{ item.figure.project_title }} {% if item.figure.organizer_path %} · {{ item.figure.organizer_path }} {% endif %}
  2. {% endfor %}
{% else %}

No incomplete travel items

Your selected Curio projects have no tagged figures below 100% progress. Planning tags are still summarized alongside.

{% endif %}

Cross-project workflow

{{ state.board.tag_set or "Workflow" }} board

Open full board
{% if board_columns %}
{% for item in board_columns[:4] %}
{{ item.column.label }} {{ item.cards | length }}
{% if item.cards %}
    {% for item_card in item.cards[:3] %}
  1. {{ item_card.card.figure.title or "Untitled figure" }} {{ item_card.card.figure.project_title }} {% if item_card.card.conflicting %} ! {% endif %}
  2. {% endfor %}
{% else %}

No cards

{% endif %}
{% endfor %}
{% if state.board.columns | length > 4 %}

{{ state.board.columns | length - 4 }} more stages are available on the full board.

{% endif %} {% else %}

No workflow preview available

A populated Curio tag set will appear here after refresh.

{% endif %}

Across the map

Project pulse

Project details
{% if projects %}
{% for project in projects %}
{{ project.initials }}

{{ project.diagnostic.title }}

{{ project.diagnostic.refresh_state.value | replace("_", " ") | title }}

{% if project.metrics %}
Planning tags
{{ project.metrics.tagged_figures }}
Incomplete
{{ project.metrics.open_actions }}
Sections
{{ project.metrics.section_count }}
Workflow completion {{ project.metrics.completion_percent | round | int }}%
{% else %}

No current snapshot in this view.

{% endif %}
{% endfor %}
{% else %}

No project pulse yet

Select a category containing at least one Curio project.

{% endif %}
{{ state.aggregate.project_count }} projects in view {{ source_label }} · {{ freshness_label }}
{{ state.aggregate.tagged_figures }} tagged figures {{ state.aggregate.links }} links {{ state.aggregate.invalid_due_dates | length }} date warnings
{% endblock %}