Security tests has been COMPLETED for the {{ presenter.project_name }} project

{% for item in presenter.project_meta %} {% endfor %}
{{ item.name }}{{ item.value }}
{% for item in presenter.project_alerts %} {% endfor %}
{% macro findings_table(findings) -%}
{% for item in findings %} {% endfor %}
Tool name Description Severity
{{ item.tool }} {{ item.title }} + {{ item.severity }}
{{ item.description|safe }} {% if item.findings %} {{ findings_table(item.findings) }} {% endif %}
{%- endmacro %} {% if presenter.project_findings %}

Findings

{{ findings_table(presenter.project_findings) }} {% endif %} {% if presenter.project_information_findings %}

Information and findings below minimal severity level

{{ findings_table(presenter.project_information_findings) }} {% endif %} {% if presenter.project_false_positive_findings %}

False positives

{{ findings_table(presenter.project_false_positive_findings) }} {% endif %} {% if presenter.project_excluded_findings %}

Excluded

{{ findings_table(presenter.project_excluded_findings) }} {% endif %} {% if presenter.project_errors %}

Errors

{% for item in presenter.project_errors %} {% endfor %}
Tool name Error
{{ item.tool }} {{ item.title }} +
{{ item.description|safe }}
{% endif %}