{% extends "base_as_index.html" %} {% load static %} {% load desc_types %} {% load i18n %} {% block navbar %} {% endblock %} {% block leftbar %}
{% endblock %} {% block content %}
{% for row in scan_report %}
{{ row.domain }} {{ row.dcount }}
{% for type in row.types %}
{{ type.type }} {{ type.count }} {% if type.inc_vulns or type.dec_vulns %} ( {% if type.inc_vulns %} {{ type.inc_vulns }} {% endif %} {% if type.inc_vulns and type.dec_vulns %} / {% endif %} {% if type.dec_vulns %} {{ type.dec_vulns }} {% endif %} ) {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}