{% extends "base.html" %} {% load display_tags %} {% block content %}
Development Environment
{% if test.environment %} {{ test.environment }} {% else %} Unknown {% endif %}
Engagement
{{ test.engagement }}
Target Start Date
{{ test.target_start.date }}
Target End Date
{{ test.target_end.date }}
{% if test.percent_complete > 0 %}
Progress
{{ test.percent_complete }}%
{% endif %}

Findings

{% if findings %} {% for finding in findings %} {% endfor %}
Name Severity Reporter Mitigation Date Verified Active
{{ finding.title }} {% if finding.severity == "Critical" or finding.severity == "High" %} {% else %}{% endif %}{{ finding.severity }} {{ finding.reporter.username }} {{ finding.mitigated }} {{ finding.verified }} {{ finding.active }}
{% include "dojo/paging_snippet.html" with page=findings %}
{% else %}

No findings found.

{% endif %}

Notes

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

No notes found.

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


{% endblock %} {% block postscript %} {% endblock %}