{% extends "base.html" %} {% load i18n risk_extras %} {% block crumbs %}
  • {% trans "Incidents" %}
  • {% endblock %} {% block content %}
    {% for i in incidents %} {% empty %} {% endfor %}
    {% trans "No." %} {% trans "Incident" %} {% trans "Linked Risks" %} {% trans "Status" %} {% trans "Reported on" %} {% trans "Reported by" %}
    {{ i.id }} {{ i.title }} {% if i.related_risks.exists %}
      {% for r in i.related_risks.all %}
    • {{ r.title }}
    • {% endfor %}
    {% else %} {% endif %}
    {{ i.get_status_display }} {{ i.date_reported|date:"d.m.Y" }} {{ i.reported_by|default:"–" }}
    {% trans "No incidents found." %}
    {% endblock %}