{# Bundle H: /themes — cluster review index page. #} {% extends "base.html" %} {% block title %}Themes — lit-monitor{% endblock %} {% block content %}
{% if not themes %}

No clusters found. Run a brain-build to generate theme clusters.

{% else %} {% for theme in themes %} {% endfor %}
Theme Papers Cohesion Computed Actions
{{ theme.display_name }} {{ theme.n_papers }} {% if theme.cohesion_score is not none %} {{ "%.3f" | format(theme.cohesion_score | float) }} {% else %} — {% endif %} {{ (theme.computed_at or "")[:10] or "—" }}
{% endif %}
{% endblock %}