Files
OSINT/templates/osint/result_list.html
Iliyan Angelov ed94dd22dd update
2025-11-26 22:32:20 +02:00

50 lines
2.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %}OSINT Резултати - Официален Портал{% endblock %}
{% block content %}
<div class="gov-card">
<div class="gov-card-header">
<h2>OSINT Резултати за Доклад: {{ report.title }}</h2>
</div>
<div class="gov-card-body">
{% if results %}
<div class="reports-list">
{% for result in results %}
<div class="result-card">
<div class="result-header">
<h3>{{ result.get_data_type_display }}</h3>
<div class="result-badges">
<span class="badge badge-source">{{ result.source }}</span>
<span class="badge badge-confidence">Увереност: {{ result.confidence_level }}%</span>
{% if result.is_verified %}
<span class="badge badge-verified">Потвърдено</span>
{% endif %}
</div>
</div>
<div class="result-meta">
<span>Събрано: {{ result.collected_at|date:"d F Y, H:i" }}</span>
</div>
{% if result.processed_data %}
<div class="result-data">
<h4>Обработени Данни</h4>
<pre style="background: var(--gov-light); padding: 1rem; border-radius: 6px; overflow-x: auto;">{{ result.processed_data|safe }}</pre>
</div>
{% endif %}
</div>
{% endfor %}
</div>
{% else %}
<div class="empty-state">
<p>Все още няма налични OSINT резултати за този доклад.</p>
</div>
{% endif %}
<div class="result-actions">
<a href="{% url 'reports:detail' report.pk %}" class="btn btn-secondary">Обратно към Доклад</a>
</div>
</div>
</div>
{% endblock %}