{% extends "base.html" %} {% block title %}Archive — didiAI Dashboard{% endblock %} {% block content %}

Claims Archive

Permanently stored claims + articles. Consumed by the future claims-api to serve gather responses without network search.

{{ total_claims }}

claims

{{ total_articles }}

articles

{% for claim in claims %}

{{ claim.claim }}

{% if claim.primary_country %}🌍 {{ claim.primary_country }}{% endif %} {% if claim.detected_language %}💬 {{ claim.detected_language }}{% endif %} {% if claim.promoted_by %}👤 {{ claim.promoted_by }}{% endif %} {% if claim.created_at %}🕐 {{ claim.created_at.strftime('%Y-%m-%d %H:%M') }}{% endif %}
{% if claim.verdict %} {{ claim.verdict }} {% endif %}
{% else %}
No claims archived yet. Promote a gather from the History page.
{% endfor %}
{% endblock %}