{% extends "base.html" %} {% load static i18n risk_extras %} {% block crumbs %}
  • {% trans "Dashboard" %}
  • {% endblock %} {% block content %}

    {% trans "Overview of Risks, Controls and Incidents" %}

    {% trans "Total Risks" %}

    {{ risks_total }}

    {% trans "Residual Risks Needing Review" %}

    {{ residual_review_required }}

    {% trans "Unread Notifications" %}

    {{ notifications_unread }}

    {% trans "Risks by CIA" %}

    {% trans "Confidentiality" %}
    {{ risks_by_cia.1|default:0 }}
    {% trans "Integrity" %}
    {{ risks_by_cia.2|default:0 }}
    {% trans "Availability" %}
    {{ risks_by_cia.3|default:0 }}

    {% trans "Controls by Status" %}

    {% for row in controls_by_status %} {% empty %} {% endfor %}
    {% trans "Status" %} {% trans "Count" %}
    {{ row.status|control_status_label }} {{ row.count }}
    {% trans "No data" %}

    {% trans "Incidents by Status" %}

    {% for row in incidents_status %} {% empty %} {% endfor %}
    {% trans "Status" %} {% trans "Count" %}
    {{ row.status|incident_status_label }} {{ row.count }}
    {% trans "No data" %}

    {% trans "Risk Trend (per Month)" %}

    {{ months|json_script:"months-data" }} {{ trend_data|json_script:"trend-data" }} {% endblock %}