{% load i18n %} {% load sentry_helpers %}
{% for exception in exceptions %}
{% if not exception.is_root %}

Caused by {{ exception.exception_type }}

{% else %}

{{ exception.exception_type }}{% if not newest_first %} Root Cause{% endif %}

{% endif %} {% if exception.exception_value %}

{{ exception.exception_value }}

{% endif %} {% with exception.stacktrace.frames as frames %} {% with stack_id=exception.stack_id first_frame_omitted=exception.stacktrace.first_frame_omitted last_frame_omitted=exception.stacktrace.last_frame_omitted %} {% include "sentry/partial/interfaces/stacktrace_inner.html" %} {% endwith %} {% endwith %}
{% endfor %}
{% if system_frames %} {% endif %}