{% extends "base2.html" %} {% block title %}/ Targets{% endblock %} {% block target_list_menu_active %} class="active"{% endblock %} {% block content %}
{% load bootstrap3 %}
{% csrf_token %} Target settings {% bootstrap_form form %} {% buttons %} {% endbuttons %}
{% if target_info %}
{% if target_info.abc_id %}{% endif %} {% if target_info.comment %} {% endif %} {% if target_info.users.all %} {% endif %}
Service Name:{{ target_info.name }}
ABC:{{ target_info.abc_id }}
StarTrack:{{ target_info.st_queue }}
Comment:{{ target_info.comment }}
Contacts: {% for item in target_info.users.all %} {{ item }}{% if forloop.last %}{% else %}, {% endif %} {% endfor %}
Notify on scan start:{{ target_info.notify_on_scan }}
Coverage Scans (last 90 days) {% for scan in target_scans %} {% endfor %}
DateURIStatusVulnerable
{{ scan.start }} {{ scan.scan_url }} {{ scan.statusline }} {{ scan.has_sensitive_vulns }}
{% else %}
{% if object_list %} Targets {% for target in object_list %} {% if target.last_scan_obj %} {% else %} {% endif %} {% endfor %}
NameURLLast scanST QueueProdutionABCComment
{{ target.name }} {{ target.url }} {{ target.last_scan_obj.finish|date:"d.m.Y" }} {% if target.st_queue %}{{ target.st_queue }}{% endif %} {{ target.is_prod }} {% if target.abc_id %}View{% endif %} {{ target.comment|default:"" }}
{% else %}

No Targets found.

{% endif %} {% endif %}
{% endblock %}