{% extends "base.html" %} {% block title %}{{ status_code }} - Supavision{% endblock %} {% block content %}
{{ message }} {% if status_code == 400 %} The request was invalid. Check your input and try again. {% elif status_code == 403 %} You don't have permission to access this page. Contact an admin if you need access. {% elif status_code == 404 %} The page you're looking for doesn't exist or has been moved. {% elif status_code == 429 %} Too many requests. Wait a moment and try again. {% elif status_code >= 500 %} An internal error occurred. If this persists, check the server logs. {% endif %}
{% if status_code == 400 %} Dashboard {% elif status_code == 403 %} Go to Dashboard {% elif status_code == 404 %} Go to Dashboard View Resources {% elif status_code == 429 %} Go to Dashboard {% elif status_code >= 500 %} Dashboard {% endif %}
{% if current_user and status_code in (400, 404) %}

Tip: press Ctrl+K (or +K) to open the command palette and jump anywhere.

{% endif %} {% endblock %}