{% extends "base.html" %} {% load display_tags %} {% block content %}
Details
  • Severity: {{ finding.severity }}
  • Status: {{ finding.status }}
  • {% if finding.risk_acceptance_set.all %}
  • Acceptance: View Risk Acceptance
  • {% endif %}
  • Date discovered: {{ finding.date }}
  • Date Mitigated: {{ finding.mitigated }}
  • Reporter: {{ finding.reporter }}
Endpoints / Systems
{% if finding.endpoints.all %}
    {% for endpoint in finding.endpoints.all %}
  • {{ endpoint }}
  • {% endfor %}
{% else %} No endpoints. {% endif %}
Description
{{ finding.description }}
Mitigation
{{ finding.mitigation }}
{% if burp_request %}
Request
{% endif %} {% if burp_response %}
Response
{% endif %}
Impact
{{ finding.impact }}
References
{{ finding.references }}

Notes

{% if notes %} {% for note in notes %} {% endfor %}
User Date Note
{{ note.author.username }} {{ note.date }} {{ note }} {% ifequal user.username note.author.username %} [X] {% endifequal %}
{% else %}

No notes saved.

{% endif %}
{% csrf_token %} {% include "dojo/form_fields.html" with form=form %}
{% endblock %} {% block postscript %} {% endblock %}