{% extends "base.html" %} {% block title %}Renewal Queue — Swiss Truth{% endblock %} {% block content %} {% if flash %}
{{ flash.msg }}
{% endif %}

Renewal Queue

{{ claims | length }} Claims
{% if claims %} {% for claim in claims %}
needs_renewal {{ claim.domain_id }} {% if claim.expires_at %} abgelaufen: {{ claim.expires_at[:10] }} {% endif %}

{{ claim.text }}

Letzte Validierung: {{ claim.last_reviewed[:10] if claim.last_reviewed else '—' }} · Hash: {{ claim.hash_sha256[:22] }}…
{% if claim.source_references %}
{% for url in claim.source_references %} {{ url }} {% endfor %}
{% endif %}
{% endfor %} {% else %}

Keine abgelaufenen Claims — alles aktuell.

Prüfe täglich mit: swiss-truth-expire

{% endif %} {% if expiring %}

⚠️ Läuft in den nächsten 30 Tagen ab ({{ expiring | length }})

{% for claim in expiring %}
{{ claim.expires_at[:10] if claim.expires_at else '?' }} {{ claim.text[:100] }}… Detail →
{% endfor %}
{% endif %} {% endblock %}