{% extends "base.html" %} {% load display_tags %} {% block add_styles %} label input[type="radio"] {visibility: hidden; position: relative; left: -10000px;} label {padding-right: 23px !important;} .table400 td { text-align: center !important; } .progress {margin-bottom: 0px !important;} {% endblock %} {% block content %} {% if scan_is_running %}
Scan Running! This page will refresh in 2:00 to update status.
{% endif %}

Scan Settings

  • Product: {{ scan_settings.product }}
  • Frequency: {{ scan_settings.frequency }}
  • Protocol: {{ scan_settings.protocol }}
  • Contact Info: {{ scan_settings.email }}
{% if scan_settings.addresses %}
  • Addresses:
      {% for address in scan_settings.addresses_as_list %}
    • {{ address }}
    • {% endfor %}
{% endif %}
{% if scans %}
{% csrf_token %}

Scans Completed with these Settings:

{% for sc in scans %} {% endfor %}
Date Protocol Open Ports Status Baseline
{{ sc.date }} {{ sc.protocol }} {{ sc|ports_open }} {% ifequal sc.status "Running" %}
{{ sc.status }}
{% else %} {{ sc.status }} {% endifequal %}
{% endif %}
{% endblock %} {% block postscript %} {% endblock %}