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

{{ title }}

{{ message }}

Path
{{ path }}
Hint
{% if status == 405 %} Check HTTP method {% elif status == 400 %} Check request body {% elif status == 401 %} Auth required {% elif status == 403 %} Permission denied {% else %} Check URL {% endif %}
{% if path.startswith('/api/') %} API endpoints return JSON for programmatic clients. {% else %} If you expected an API response, use /api/.... {% endif %}
{% endblock %}