{% extends "base.html" %} {% block title %}Claim #{{ claim.id }} — didiAI Dashboard{% endblock %} {% block content %}
← Back to archive

{{ 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.source_request_id %} source request → {% endif %}
{% if claim.summary %}

Summary

{{ claim.summary }}
{% endif %} {% if claim.entities %}

Entities

{% for key in ['persons', 'institutions', 'locations'] %}

{{ key }}

    {% for item in (claim.entities.get(key) or []) %}
  • {{ item }}
  • {% else %}
  • {% endfor %}
{% endfor %}
{% endif %}

Articles ({{ articles|length }})

{% for link in articles %} {% set a = link.article %}
{{ a.title or a.url }}

{{ a.publisher or a.url }}

{% if link.link.relevance_score %} rel: {{ '%.2f'|format(link.link.relevance_score|float) }} {% endif %} {% if a.credibility_score %} cred: {{ '%.2f'|format(a.credibility_score|float) }} {% endif %}
{% if link.link.snippet %}

"{{ link.link.snippet[:300] }}{% if link.link.snippet|length > 300 %}…{% endif %}"

{% endif %} {% if a.full_text %}
View full text ({{ a.full_text|length }} chars)
{{ a.full_text[:3000] }}{% if a.full_text|length > 3000 %}…{% endif %}
{% endif %}
{% endfor %}
{% endblock %}