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

NetScan

Home network security scanner

New Profile
{% if not profile_data %}

No scan profiles yet

Create your first scan profile to start monitoring your home network.

Create your first scan profile
{% else %} {% for item in profile_data %} {% with p=item.profile run=item.last_run worst=item.worst_severity %} {% endwith %} {% endfor %}
Profile Actions
{% if worst %} {% if worst == 'critical' %}🔴{% elif worst == 'warning' %}🟡{% else %}🟢{% endif %} {% endif %} {{ p.name }}
{% if p.enabled %}Enabled{% else %}Disabled{% endif %} Every {{ p.schedule_interval }} day{{ p.schedule_interval|pluralize }}
{% csrf_token %}
History Edit
{% endif %}
{% endblock %}