{% extends "base.html" %} {% block title %}Error{% endblock %} {% block content %}

Debug Error

{% if settings.DEBUG %}

An error occurred while processing your request.

Error:

{{ error | e }}
{% if traceback %}

Traceback:

{{ traceback | e }}
{% endif %} {% if request %}

Request Info:

URL: {{ request.url }}

Method: {{ request.method }}

{% endif %}
{% else %} {# Production mode - hide sensitive details #}

An unexpected error occurred. Please try again later.

If this problem persists, please contact support.

{% if error_id %}

Error ID: {{ error_id }}

{% endif %}
{% endif %}
{% endblock %}