{% extends "base.html" %} {% load i18n risk_extras %} {% block crumbs %}
  • {% trans "Incidents" %}
  • {{ incident.title }}
  • {% endblock %} {% block content %}
    {% trans "Overview" %} {% trans "Linked Risks" %} {% trans "History" %}

    {% trans "Incident" %}: {{ incident.title }}

    {% trans "Reported by" %}: {{ incident.reported_by|default:"–" }}

    {% trans "Reported on" %}: {{ incident.date_reported|date:"d.m.Y" }}

    {% trans "Status" %}: {{ incident.get_status_display }}

    {% trans "Created at" %}: {{ incident.created_at|date:"d.m.Y H:i" }}

    {% trans "Updated at" %}: {{ incident.updated_at|date:"d.m.Y H:i" }}

    {% trans "Description" %}

    {{ incident.description|default:"–" }}

    {% endblock %}