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

Risk Acceptance added by {{ risk_approval.reporter.get_full_name }}

Findings Accepted

{% if accepted_findings %} {% if authorized %} {% endif %} {% for finding in accepted_findings %} {% if authorized %} {% endif %} {% endfor %}
Name Date Severity Product ActiveActions
{{ finding.title|truncatechars:65 }} {{ finding.date }} {% if finding.severity == "Critical" or finding.severity == "High" %} {% else %}{% endif %}{{ finding.severity }} {{ finding.test.engagement.product }} {{ finding.active }}
{% csrf_token %}
{% include "dojo/paging_snippet.html" with page=accepted_findings %}
{% else %}

No findings associated with this Risk Acceptance.

{% endif %}
{% if show_add_findings_form %} {% if authorized %}

Accept Additional Findings

{% csrf_token %}
{{ add_findings_form.as_p }}
{% include "dojo/paging_snippet.html" with page=add_findings parm_name="apage" %}
{% endif %} {% endif %}

Uploaded Document

{% if authorized %} {% endif %} {% if authorized %} {% endif %}
Current File Date AddedActions
{{ risk_approval.filename }} {{ risk_approval.created }}
{% csrf_token %}

Notes

{% if notes %} {% if authorized %} {% endif %} {% for note in notes %} {% if authorized %} {% endif %} {% endfor %}
User Date NoteActions
{{ note.author.username }} {{ note.date }} {{ note }}
{% csrf_token %}
{% else %}

No notes saved.

{% endif %}
{% csrf_token %} {% include "dojo/form_fields.html" with form=note_form %}
{% if authorized %}

Danger Zone

Deleting this Risk Acceptance will remove the uploaded file, delete associated Notes and make related findings active.

{% csrf_token %}
{% endif %}
{% endblock %}