{% extends "base.html" %} {% block title %}Error {{ status_code }} - ECM Control{% endblock %} {% block content %}

Error {{ status_code or 500 }}

{{ error_message or "An unexpected error occurred" }}
{% if error_detail %}
Debug Information:
{{ error_detail }}
{% endif %}
Troubleshooting Tips:
  • • Check the server logs for more details
  • • Verify that all required fields are filled correctly
  • • Ensure your browser is up to date
  • • Try refreshing the page
{% endblock %}