{% load humanize %} {% load event_tags %} {% load display_tags %}
{% if product_type %}
Generated By {{ user.get_full_name }}
Generated On {% now "SHORT_DATE_FORMAT" %}
{% if test.notes.all %}
{% for note in test.notes.all %}
{{ note.author }} - {{ note.date }} - {{ note }}
{% endfor %}
{% else %}
No notes found.
{% endif %}
{% for test in engagement.test_set.all %}
{% if test.notes.all %}
{% for note in test.notes.all %}
{{ note.author }} - {{ note.date }} - {{ note }}
{% endfor %}
{% endif %}
{% endfor %}
| Name | Date | Severity |
|---|---|---|
| {{ finding.title }} | {{ finding.date }} | {{ finding.severity }} |
{{ find.test.engagement.product.name }}
{{ find.status }}
{% ifchanged find.severity %}{{ find.severity }} ({{ find.numerical_severity }})
{{ find.description|linebreaksbr|truncatechars:500 }}
{{ find.impact|linebreaksbr }}
{% for endpoint in find.endpoints.all %}
{{ endpoint }}
{% endfor %}
{{ find.mitigation|linebreaksbr }}
{{ find.references|linebreaksbr }}
{% if include_finding_notes %}
{% if find.notes.all %}
{% for note in find.notes.all %}
{{ note.author }} - {{ note.date }} - {{ note }}
{% endfor %}
{% else %}
No notes found.
{% endif %}
{{ find.test.engagement.product.name }}
{{ find.status }}
{{ find.severity }} ({{ find.numerical_severity }})
{{ find.description|linebreaksbr|truncatechars:500 }}
{{ find.impact|linebreaksbr }}
{{ find.mitigation|linebreaksbr }}
{{ find.references|linebreaksbr }}
{% if include_finding_notes %}
{% if find.notes.all %}
{% for note in find.notes.all %}
{{ note.author }} - {{ note.date }} - {{ note }}
{% endfor %}
{% else %}
No notes found.
{% endif %}