{% extends "base.html" %} {% load humanize %} {% load display_tags %} {% block add_styles %} .graph {min-height: 158px;} h3 { margin-top: 5px; margin-bottom: 5px; font-size: 20px; line-height: 22px;} {% endblock %} {% block content %}

{{ prod }}
{{ prod.endpoint_count }} affected endpoint{{ prod.endpoint_count|pluralize }}

{{ accepted_findings|length }} Accepted findings.
Finding Age ({{ verified_findings|length|apnumber }} verified finding{{ verified_findings|length|pluralize }})
Weekly activity, displayed by day, of findings reported.
Details
  • Product Type: {{ prod.prod_type }}
  • Team Manager: {{ prod.manager }}
  • Product Manager: {{ prod.prod_manager }}
  • Tech Contact: {{ prod.tech_contact }}
  • {% if prod.authorized_users.all %}
  • Authorized Users
      {% for au in prod.authorized_users.all %}
    • {{ au }}
    • {% endfor %}
  • {% endif %}
Description
{{ prod.description }}
{% if user.is_staff %}

Active Engagements

{% if engs %} {% for eng in engs %}
Name Lead Start Date End Date Actions
{% if eng.name %}{{ eng.name }}{% else %} N/A {% endif %} {{ eng.lead }} {{ eng.target_start }} {{ eng.target_end }} View Details {% endfor %}
{% else %}

No active engagements found.

{% endif %}
{% endif %} {% if authorized %}

Scans

{% if scan_sets %} {% for scan in scan_sets %} {% endfor %}
Creator Date Frequency Protocol Actions
{{ scan.user }} {{ scan.date }} {{ scan.frequency }} {{ scan.protocol }} View Details
{% else %}

No scans configured.

{% endif %}
{% endif %} {% if user.is_staff and i_engs %}

Closed Engagements

{% for eng in i_engs %}
Name Lead Start Date End Date Actions
{% if eng.name %}{{ eng.name }}{% else %} N/A {% endif %} {{ eng.lead }} {{ eng.target_start }} {{ eng.target_end }} View Details {% endfor %}
{% endif %}
{% endblock %} {% block postscript %} {% if punchcard %} {% endif %} {% endblock %}