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

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

Filters
{% include "dojo/filter_snippet.html" with form=findings.form %}

Report Options
{% include "dojo/filter_snippet.html" with form=report_form submit='report' %}
{% if findings %}

The findings listed below will be included in the report. Use the filters above to fine tune the results.

{% include "dojo/paging_snippet.html" with page=paged_findings %}
{% for finding in paged_findings %} {% endfor %}
Title Date Status Mitigated Severity EPSS Score / Percentile Product
{{ finding.title|truncatechars_html:50 }} {% include "dojo/snippets/tags.html" with tags=finding.tags.all %} {{ finding.date }} {{ finding.status }} {{ finding.mitigated }} {% if finding.severity == "Critical" or finding.severity == "High" %}

{% else %}

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

{{ finding.epss_score|format_epss }} / {{ finding.epss_percentile|format_epss }} {{ finding.test.engagement.product }}
{% include "dojo/paging_snippet.html" with page=paged_findings %}
{% else %}

No findings found.

{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}