{% extends "base.html" %} {% block title %}Scan Result #{{ scan.pk }} — SentinelAI{% endblock %} {% block meta_description %}Explainable AI cybersecurity result with risk score, flagged indicators, and recommended next actions.{% endblock %} {% block content %}
Scan confirmation

{{ scan.verdict }}

Result created {{ scan.created_at|date:"M j, Y H:i" }} using {{ scan.model_version }}.

Scan another item
{{ scan.risk_score }} risk / 100
{{ scan.get_risk_level_display }} risk
Scan type
{{ scan.get_scan_type_display }}
Sanitized preview
{{ scan.target_preview }}
Content hash
{{ scan.content_hash|slice:":16" }}…
Why it was flagged

Explainable indicators

{{ scan.explanation }}

{% for indicator in scan.indicators %}
{{ indicator.label }}

{{ indicator.detail }}

+{{ indicator.weight }}
{% endfor %}
Recommended response

Next actions

    {% for action in scan.recommended_actions %}
  • {{ action }}
  • {% endfor %}
{% endblock %}