8 lines
253 B
HTML
8 lines
253 B
HTML
![]() |
{% extends "base.html" %}
|
||
|
{% block crumbs %}
|
||
|
<li><a href="{% url 'risks:list_incidents' %}">Vorfälle</a></li>
|
||
|
<li><a href="{% url 'risks:show_incident' incident.id %}">{{ incident.title }}</a></li>
|
||
|
{% endblock %}
|
||
|
{% block content %}
|
||
|
|
||
|
{% endblock %}
|