{% extends "base_as_index.html" %} {% load static %} {% load desc_types %} {% load i18n %} {% block navbar %} {% endblock %} {% block leftbar %}
{% endblock %} {% block content %}
{% if sde %}
{% trans 'Sensitive data' %}
{% for domain, dirs in sde.items %} {% with forloop.counter as idimain %}
{% for dir, items in dirs.items %}
{% for item in items %}
{{ item.name_file }} {% if item.status == 'old' %} {{ item.date }} {% endif %}
{% endfor %}
{% endfor %}
{% endwith %} {% endfor %}
{% endif %} {% if scan_report %}
{% trans 'List of found vulnerabilities' %}
{% endif %} {% if new_version %}
{% for row in scan_report %}
{{ row.domain }} {{ row.dcount }}
{% for type in row.types %}
{{ type.type }} {{ type.count }} {% if type.add_today %} (+{{ type.add_today }}) {% endif %}
{% endfor %}
{% endfor %}
{% else %}
{% include 'main/scanner_table.html' %}
{% endif %}
{% endblock %}