{% extends "base.html" %} {% load display_tags %} {% load humanize %} {% load static from staticfiles %} {% block add_css %} {% endblock %} {% block add_styles %} .chosen-container { width: 70% !important; } .editor-toolbar, .editor-statusbar, .editor-preview-side, .CodeMirror { width: 70% !important; } {% endblock %} {% block content %}

Risk Exception added by {{ risk_approval.reporter.get_full_name }}, Updated {{ risk_approval.updated|naturaltime|default_if_none:"" }}, Created {{ risk_approval.created|naturaltime|default_if_none:"" }}

Expiration Date Accepted By Compensating Control
{{ risk_approval.expiration_date|default_if_none:"" }} {{ risk_approval.accepted_by|default_if_none:"" }} {{ risk_approval.compensating_control|default_if_none:"" }}

Findings Accepted

{% if accepted_findings %} {% if authorized %} {% endif %} {% for finding in accepted_findings %} {% if authorized %} {% endif %} {% endfor %}
Severity Name Date ActiveActions
{{ finding.severity_display }} {{ finding.title|truncatechars:140 }} {{ finding.date }} {{ finding.active }}
{% csrf_token %}
{% include "dojo/paging_snippet.html" with page=accepted_findings %}
{% else %}

No findings associated with this Risk Exception.

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

Accept Additional Findings


{% csrf_token %}
{% include "dojo/form_fields.html" with form=add_findings_form %}
{% 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 %}