{% extends "admin/base_site.html" %} {% load static %} {% block title %}Exception - {{exc_name}}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
Back

{{exc_name}}

{{ exc_str }}
{% csrf_token %} {% if not exceptions %}
Exception not found
{% endif %} {% for exc in exceptions %}
{{exc.timestamp}} - {{exc.exception_name}} ({{exc.exception_message}})
    {% for line in exc.stack_trace %}
    {{line.formatted_str}} {% if line.locals %}
    {% for k, v in line.locals.items %}
    {{k}} = {{v}}
    {% endfor%}
    {% endif %}
    {% endfor %}
{% endfor %}
{% endblock %}