{% extends "base.html" %} {% block title %}Show exception of {{ group.long_id }}{% endblock %} {% block h1 %}

Show exception sample (1 of {{ group.times_seen }} seen)

{% endblock %} {% block content %}

{{ event.level_title }} {{ event.type_exc.0 }}{{ event.type_exc.1|yesno:": ," }}{{ event.type_exc.1 }}

Traceback

{% if not data.exception %}

This exception has no traceback information.

{% else %} {% for value in data.exception.values %}
{% for frame in value.stacktrace.frames %}
{{ frame.filename }} in {{ frame.function }} at line {{ frame.lineno }}
{{ frame.pre_context|join:"
" }}

{{ frame.context_line }}
{{ frame.post_context|join:"
" }}
{% for var, values in frame.vars.items %} {% endfor %}
{{ var }} {{ values }}
{% endfor %}
{% endfor %} {% endif %} {% include "include/table_from_dict.html" with title="Extra" values_dict=data.extra only %} {% include "include/table_from_dict.html" with title="Modules" values_dict=data.modules only %} {% include "include/table_from_dict.html" with title="SDK" values_dict=data.sdk only %} {% endblock %} {% block additional_tab %}
Last seen
{{ group.last_seen|date:"d E Y, H:i:s" }}
First seen
{{ group.first_seen|date:"d E Y, H:i:s" }}
Times seen
{{ group.times_seen }}
Server name
{{ data.server_name }}
Platform
{{ data.platform }}
Group ID
{{ group.long_id }}
Event ID
{{ event.event_id }}
{% endblock %}