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

{{ error_code | default('Error') }}

{{ error_message | default('An unexpected error occurred.') }}

{% if error_details %}
Error Details:
{{ error_details }}
{% endif %}
{% endblock %}