{% extends "base.html" %} {% load humanize %} {% block content %}

Generate {% if product_type %} Product Type {% elif product %} Product {% elif engagement %} Engagement {% elif test %} Test {% endif %} Report


The {{ findings|length|apnumber }} finding{{ findings|length|pluralize }} listed below will be included in the report. Use the filters to fine tune the findings to be used.

{% if findings %}
{% for finding in paged_findings %} {% endfor %}
Title Date Status Mitigated Severity Product
{{ finding.title|truncatechars:50 }} {{ finding.date }} {{ finding.status }} {{ finding.mitigated }} {% if finding.severity == "Critical" or finding.severity == "High" %}

{% else %}

{% endif %}{{ finding.severity }}

{{ finding.test.engagement.product }}
{% include "dojo/paging_snippet.html" with page=paged_findings %} {% else %} No findings found. {% endif %}
Filters
{{ findings.form.as_p }}
Report Options

{% if findings|length <= 150 %} {% endif %}


{% endblock %}