{{ exception.namespace() }}
{{ exception.message() }}
Stack Trace ({{ exception.count() }})
{% if exception.get_integrations() %}
Integrations: {% for integration, value in exception.get_integrations().items() %} {{ integration }} ({{ value.get('cls', []).count or '0' }}) {% endfor %}
{% endif %}
{% for stack in exception.stacktrace() %}
#{{ loop.index }} {{ stack.file_short }}:{{stack.lineno }}
{% for lineno, content in stack.file_contents.items() %}
{% if stack.language == 'python' %} {{ content|safe }} {% else %} {{ content }} {% endif %} {% endfor %}
{% if stack.variables %} {% for variable, value in stack.variables.items() %}
{{ variable }}
{{ value }}
{% endfor %} {% else %}
No Variables In Scope
{% endif %}
{% endfor %}
{% for title, value in exception.get_integrations().items() %} {% endfor %} {% for context, values in exception.get_contexts().items() %}

{{ context }}

Show Information
{% endfor %}