Security tests has been COMPLETED for the {{ presenter.project_name }} project
{% for item in presenter.project_meta %}
{{ item.name }} | {{ item.value }} |
{% endfor %}
{% for item in presenter.project_alerts %}
{{ item.text }}
{% endfor %}
{% macro findings_table(findings) -%}
Tool name |
Description |
Severity |
{% for item in findings %}
{{ item.description|safe }}
{% if item.findings %}
{{ findings_table(item.findings) }}
{% endif %}
|
{% endfor %}
{%- endmacro %}
{% if presenter.project_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 %}
{{ findings_table(presenter.project_false_positive_findings) }}
{% endif %}
{% if presenter.project_excluded_findings %}
{{ findings_table(presenter.project_excluded_findings) }}
{% endif %}
{% if presenter.project_errors %}
Tool name |
Error |
{% for item in presenter.project_errors %}
{{ item.description|safe }}
|
{% endfor %}
{% endif %}