{% load i18n admin_errors_tags %}

{% translate "Traceback" %}

{% if ae_traceback_text %} {% if ae_can_view_context and perms.admin_errors.view_issue_context and ae_traceback_text_context %} {% else %} {% endif %} {% endif %} {% if ae_payload.exception %} {% ae_traceback_blocks ae_payload as ae_blocks %} {% for block in ae_blocks %} {% if block.separator %}

{{ block.separator }}

{% endif %}

{{ block.exc.module }}.{{ block.exc.type }}: {{ block.exc.value }}

{% for frame in block.exc.frames %} {% include "admin/admin_errors/issue/includes/frame.html" %} {% endfor %}
{% endfor %} {% elif ae_payload.message %}

{{ ae_payload.message }}

{% else %}

{% translate "No event data recorded yet." %}

{% endif %}