{% extends "base.html" %} {% load authorization_tags %} {% load static %} {% block add_styles %} {{ block.super }} .chart {height: 300px} .status .panel {min-height: 140px;background-color: #f5f5f5;} #punchcard {height: 350px} {% endblock %} {% block content %} {{ block.super }} {% block finding_stats_tiles %}
{% block active_engagements %}
{{ engagement_count }}
Active Engagements
{% endblock %} {% block last_seven_days %}
{{ finding_count }}
Last Seven Days
{% endblock %} {% block closed_last_seven_days %}
{{ mitigated_count }}
Closed In Last Seven Days
{% endblock %} {% block risk_accepted_last_seven_days %}
{{ accepted_count }}
Risk Accepted In Last Seven Days
{% endblock %}
{% endblock %} {% block graph_row %}
{% block historical_finding_severity %}
Historical Finding Severity
{% endblock %} {% block reported_finding_severity_by_month %}
Reported Finding Severity by Month
{% endblock %}
{% endblock %} {% block surveys %} {% if system_settings.enable_questionnaires and "dojo.view_engagement_survey"|has_configuration_permission:"staff" %}
Unassigned Answered Engagement Questionnaires
{% if surveys %} {% for survey in surveys %} {% endfor %}
Name Product Engagement Responder Status Completion Date Actions
{% if survey.engagement %} {{ survey.survey.name }} {% else %} {{ survey.survey.name }} {% endif %} {{ survey.engagement.product.name }} {{ survey.engagement.name }} {% if survey.responder %} {{ survey.responder }} {% else %} Anonymous {% endif %} {% if survey.completed %} Completed {% else %} Unanswered {% endif %} {{ survey.answered_on }}
{% if survey.engagement %} View Responses Assign User {% else %} View Responses Create Engagement {% endif %}
{% else %}

No questionnaires found.

{% endif %}
{% endif %} {% endblock %} {% block punchcard %}
{% if punchcard %}
Weekly activity, displayed by day, of findings you reported.*

Week begins on date displayed.


* Weeks are only displayed if findings are available.

{% endif %}
{% endblock %} {% endblock %} {% block postscript %} {{ block.super }} {% if punchcard %} {% endif %} {% block metrics %} {% endblock metrics %} {% endblock %}