{% extends "sentry/layout.html" %} {% load sentry_helpers %} {% load i18n %} {% block title %}{{ group.error }} | {{ block.super }}{% endblock %} {% block heading %} Message Details « {% trans "Back to list" %} {% endblock %} {% block sidebar %}

Meta

Logger:
{{ group.logger }}
Level:
{{ group.get_level_display }}
Status:
{{ group.get_status_display|title }}
First Seen:
{{ group.first_seen|timesince }}
Last Seen:
{{ group.last_seen|timesince }}
{% for html in group|get_widgets:request %} {{ html|safe }} {% endfor %} {% endblock %} {% block main %} {% block inner %}
{% if group.has_two_part_message %}

Full Message

{{ group.message }}
{% endif %} {% if traceback %} {{ traceback }} {% endif %} {% with group|chart_data as chart_data %} {% if chart_data %}

Frequency

{% endif %} {% endwith %}

{% trans "Additional Data" %}

{% for k, v in json_data %} {% endfor %}
{{ k }} {% if v %} {% if v|is_dict %} {% for k_, v_ in v.iteritems|as_sorted %} {% endfor %}
Variable Value
{{ k_ }}
{{ v_|pprint }}
{% else %} {{ v|pprint }} {% endif %} {% else %}

No data for {{ k }}

{% endif %}
{% if version_data %}

Module Versions

{% for k, v in version_data %} {% endfor %}
{{ k }} {{ v }}
{% endif %}
{% endblock %} {% endblock %}