{% extends "base.html" %} {% block title %}Fakty - Baza Wiedzy ZOPK{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| ID | Fakt | Typ | Wartość | Encje | Status | Źródło | Akcje |
|---|---|---|---|---|---|---|---|
| #{{ fact.id }} |
{{ fact.full_text }}
{% if fact.subject or fact.predicate or fact.object %}
{% if fact.subject %}Podmiot: {{ fact.subject }}{% endif %}
{% if fact.predicate %}Relacja: {{ fact.predicate }}{% endif %}
{% if fact.object %}Obiekt: {{ fact.object[:50] }}{% if fact.object|length > 50 %}...{% endif %}{% endif %}
{% endif %}
|
{% if fact.fact_type %} {{ fact.fact_type }} {% else %} — {% endif %} | {% if fact.numeric_value %} {{ fact.numeric_value|round(2) }} {% if fact.numeric_unit %}{{ fact.numeric_unit }}{% endif %} {% elif fact.date_value %} {{ fact.date_value }} {% else %} — {% endif %} | {% if fact.entities_involved %} {% for e in fact.entities_involved[:3] %} {{ e.name if e.name else e }} {% endfor %} {% if fact.entities_involved|length > 3 %} +{{ fact.entities_involved|length - 3 }} {% endif %} {% else %} — {% endif %} |
{% if fact.is_verified %}
✓ Zweryfikowany
{% else %}
⏳ Oczekuje
{% endif %}
{% if fact.confidence_score %}
{{ (fact.confidence_score * 100)|round }}% pewności {% endif %} |
{% if fact.source_news_id %}
Art. #{{ fact.source_news_id }}
{% if fact.source_title %}
{{ fact.source_title[:40] }}... {% endif %} {% endif %} |
|
| Brak faktów do wyświetlenia | |||||||