{% extends "base.html" %} {% load risk_extras %} {% block crumbs %}
  • Risikoanalyse
  • {{ risk.title }}
  • {% endblock %} {% block content %}

    Risiko: {{ risk.title }}

    {{ risk.description }}

    Überblick

    Asset: {{ risk.asset|default:"-" }}

    Prozess: {{ risk.process|default:"-" }}

    Schutzziele: {% if risk.cia %}

      {% for label in risk.cia %}
    • {{ label|cia_label }}
    • {% endfor %}
    {% else %}

    Noch nicht zugewiesen

    {% endif %}

    Kategorie: {{ risk.category|default:"-" }}

    Risikoeigner: {{ risk.owner|default:"-" }}

    Erstellt am: {{ risk.created_at|date:'d.m.Y H:i' }}

    Aktualisiert am: {{ risk.updated_at|date:'d.m.Y H:i' }}

    Risikobewertung

    Brutto (vor Maßnahmen)

    Eintrittswahrscheinlichkeit

    Schadensausmaß

    Stufe

    Score

    Netto (nach Maßnahmen)

    {% if risk.residualrisk %}

    Eintrittswahrscheinlichkeit

    Schadensausmaß

    Stufe

    Score

    {% else %}

    Noch kein Nettorisiko erfasst.

    {% endif %}

    Maßnahmen

    {% if risk.controls.all %} {% for control in risk.controls.all %} {% endfor %}
    Titel Status Frist Verantwortlicher Link
    {{ control.title }} {{ control.get_status_display }} {% if control.due_date %} {{ control.due_date|date:"d.m.Y" }} {% else %} – {% endif %} {% if control.responsible %} {{ control.responsible.get_full_name|default:control.responsible.username }} {% else %} – {% endif %} {% if control.wiki_link %} 🔗 {% else %} – {% endif %}
    {% else %}

    Keine Maßnahmen erfasst.

    {% endif %}

    Historie

    {% if logs %} {% for log in logs %} {% endfor %}
    Zeitpunkt Benutzer Aktion
    {{ log.action_time|date:"d.m.Y H:i" }} {{ log.user.get_full_name|default:log.user.username }} {{ log.get_change_message }}
    {% else %}

    Keine Historie vorhanden.

    {% endif %}


    {% endblock %}