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

{{ error }}

{% else %}

Errors Seen

URL:{{ obj.host }}{{ obj.path }}


Method: {{ obj.method }}


First time seen: {{ obj.created_on }}


Last seen: {{ obj.last_seen }}


Occurrences: {{ obj.count }}


Request data: {{ obj.request_data }}

Exception detail:
{{ obj.traceback|replace_new_line_with_br|safe }}
{% endif %} {% endblock %}