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

{{ error }}

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