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

{{ eng.product }} {{ eng.status }}

Testing Lead: {% if eng.lead.get_full_name and eng.lead.get_full_name.strip %} {{ eng.lead.get_full_name }} {% else %} {{ eng.lead }} {% endif %}

{% if not eng.lead %}

Edit this engagement to add a lead.

{% endif %} {% if eng.name %}

Engagement Name: {{ eng.name }}

{% endif %}

Target Start Date: {{ eng.target_start }}

Target End Date: {{ eng.target_end }}

Test Strategy

{% if eng.test_strategy %} View Test Strategy {% else %}

Edit this engagement to add a test strategy.

{% endif %}

Threat Model

{% if threat != 'none' %} {% else %} Upload Model {% endif %}
{% if tests %}
{% for test in tests %} {% endfor %}
Type Start Date End Date Findings Notes Actions
{{ test.test_type }} {{ test.target_start.date }} {{ test.target_end.date }} {{ test.finding_set.all|length }} {{ test.notes.all|length }}
{% else %}

No tests found.

{% endif %}

Check List {% if check %} {% else %} {% endif %}

{% if check %}
Session Encryption Configuration Authentication Authorization Data Input Sensitive Data Other
{{ check.session_management }} {{ check.encryption_crypto }} {{ check.configuration_management }} {{ check.authentication }} {{ check.authorization_and_access_control }} {{ check.data_input_sanitization_validation }} {{ check.sensitive_data }} {{ check.other }}
{% else %}

Checklist has not been completed.

{% endif %}

Risk Acceptance {% if can_add_risk %} {% endif %}

{% if risks_accepted %}
{% for risk in risks_accepted %} {% endfor %}
Reporter Date Findings Accepted View File Actions
{{ risk.reporter }} {{ risk.created }} {{ risk.accepted_findings.all|length }} {{ risk.filename }} View Approval
{% else %}

No Risk Acceptances found.

{% endif %}
{% endblock %}