{% extends "layout.html" %} {% block content %}

Scan History

{% if history %}
{% for r in history %} {% endfor %}
# Domain Scan Type Result Timestamp
{{ loop.index }} {{ r.domain }} {{ r.scan_type }} {% if r.success %} Success {% else %} Failed {% endif %} {{ r.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{% else %}
No scans yet. Try scanning a domain to get started.
{% endif %} {% endblock %}