{% extends "base.html" %} {% block content %} {% if projects %}
{% for project in projects %}
{{ project.initials }} {{ project.diagnostic.refresh_state.value | replace("_", " ") | title }}

Curio project

{{ project.diagnostic.title }}

{% if project.metrics %}
Incomplete
{{ project.metrics.open_actions }}
Planning tags
{{ project.metrics.tagged_figures }}
Completed
{{ project.metrics.completed_actions }}
Sections
{{ project.metrics.section_count }}
{% else %}
No active snapshot

This project is represented in Project Center but is not part of the current aggregate.

{% endif %}
Project path {{ project.diagnostic.path }}
{% if project.diagnostic.last_successful_refresh %}
Last successful read
{% endif %}
{% if project.diagnostic.path_is_last_known %}
Last-known location The path is valid, but Curio marked it as last known.
{% endif %} {% if project.diagnostic.error %}
Latest read issue {{ project.diagnostic.error }}
{% endif %}
{% endfor %}
{% else %}

No projects returned

This Project Center category is empty. Choose another category from the selector above.

{% endif %}

Collection coverage

Current category status

{{ state.projects | length }} Returned by Project Center
{{ state.aggregate.project_count }} Included in this view
{{ state.projects | selectattr("valid") | list | length }} Valid project paths
{{ state.projects | selectattr("using_cached_snapshot") | list | length }} Using cached data
{% endblock %}