{% extends 'error_tracker/base.html' %} {% load error_tracker i18n %} {% block content_block %} {% if error %}

{{ error }}

{% else %}
{%trans 'Method' %}
{%trans 'Referrer' %}
{{ obj.method }}
{{ obj.host }}{{ obj.path }}
{%trans 'First time seen' %}
{{ obj.created_on }}
{%trans 'Last seen' %}
{{ obj.last_seen }}
{%trans 'Occurrences' %}
{{ obj.count }}
{%trans 'Request data' %}
{{obj.request_data|to_pretty}}
{%trans 'Exception detail' %}
 {{obj.traceback|escape|replace_new_line_with_br|safe}}
{% endif %} {% endblock %}