{% extends 'base.html' %} {% block content %}
NetScan

{{ profile.name }} — Scan History

{% csrf_token %}
{% if runs %}
{% for run in runs %} {% endfor %}
Started Duration Triggered by Status Findings
{{ run.started_at|date:"M d, H:i:s" }} {% if run.duration_seconds is not None %}{{ run.duration_seconds }}s{% else %}—{% endif %} {{ run.triggered_by }} {{ run.status }} {% if run.summary.critical %}🔴{{ run.summary.critical }}{% endif %} {% if run.summary.warning %}🟡{{ run.summary.warning }}{% endif %} {% if run.summary.ok %}đŸŸĸ{{ run.summary.ok }}{% endif %} {% if run.summary.info %}â„šī¸{{ run.summary.info }}{% endif %} View →
{% if is_paginated %}
{% if page_obj.has_previous %} ← Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next → {% endif %}
{% endif %} {% else %}

No scan runs yet. Click Run Now to start.

{% endif %}
{% endblock %}