{% if active_corpus is none %}

How it works

{% include "cc__onboarding.html" %}
{% else %}

{{ active_corpus.corpus_name }}

{% if last_run is not none %} Last run: · {% else %} No runs yet · {% endif %} {{ findings|length }} finding{{ '' if findings|length == 1 else 's' }}
How it works {% include "cc__onboarding.html" %}
{% if active_corpus_id and counts.all %} Export CSV {% endif %}
{% include "cc__filter_chips.html" %}
{% if findings %}
    {% for finding in findings %}
  1. {{ finding.verdict|replace('_', ' ')|title }}
    {{ finding.label_or_quote }}
    {{ finding.doc_a_label }}

    {{ finding.assertion_a_text }}

    {{ finding.doc_b_label }}

    {{ finding.assertion_b_text }}

    {% if finding.judge_rationale %}

    Why{{ finding.judge_rationale }}

    {% endif %}
    {% with pair_key=finding.pair_key, detector_type=finding.detector_type, reviewer_verdict=finding.reviewer_verdict, reviewer_label=finding.reviewer_label %} {% include "cc__finding_actions.html" %} {% endwith %}
  2. {% endfor %}
{% else %}
{% if last_run is none %}

No runs yet.

{% elif counts.all %} {# The run has findings but the active filter excludes them all. #}

No findings match the “{{ filter|replace('_', ' ') }}” filter.

Show all {% else %} {# A completed run that surfaced nothing is the success case. #}

✓ No contradictions found in the latest run.

{% endif %}
{% endif %}
{% endif %}