{% extends "base.html" %} {% block title %}Zertifizierte Claims{% endblock %} {% block content %}

Zertifizierte Claims

Von Experten validiert und freigegeben — {{ total }} total

Seite {{ page }}/{{ total_pages }}
{% if total_pages > 1 %}
{% if page > 1 %} ← Zurück {% endif %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% elif p == 1 or p == total_pages or (p >= page - 2 and p <= page + 2) %} {{ p }} {% elif p == page - 3 or p == page + 3 %} {% endif %} {% endfor %} {% if page < total_pages %} Weiter → {% endif %} {{ (page-1)*per_page + 1 }}–{{ [page*per_page, total]|min }} von {{ total }}
{% endif %} {% if claims %} {% for c in claims %}
certified {{ c.domain_id }} Konfidenz: {{ c.confidence_score }} {% if c.effective_confidence < c.confidence_score %} → {{ c.effective_confidence }} effektiv {% endif %} gültig bis {{ c.expires_at[:10] if c.expires_at else '—' }}
{% if c.question %}

❓ {{ c.question }}

{% endif %}

{{ c.text }}

{% for v in c.validated_by %} {% if v.name %} ✓ {{ v.name }}{% if v.institution %} · {{ v.institution }}{% endif %} {% endif %} {% endfor %}
{% if c.source_references %}
{% for url in c.source_references %} {{ url }} {% endfor %}
{% endif %}
{{ c.hash_sha256 }}
{% endfor %} {% else %}
📋

Noch keine zertifizierten Claims. Starte mit dem Review.

Zur Review Queue
{% endif %} {% endblock %}