{% block extra_css %}{% endblock %}
{% block content %}
{% block icon %}🚫{% endblock %}
{% block error_code %}500{% endblock %}
{% block error_title %}Something went wrong{% endblock %}
{% block error_message %} We're sorry, but something went wrong on our end. Please try again later. {% endblock %}
{% block actions %}
Go Home
Go Back
{% endblock %}
{% if debug and request %}
Debug Information
Method:
{{ request.method }}
Path:
{{ request.path }}
Query String:
{{ request.query_string or 'None' }}
User Agent:
{{ request.user_agent or 'Unknown' }}
Remote Address:
{{ request.remote_addr or 'Unknown' }}
Timestamp:
{{ timestamp }}
{% block debug_extra %}{% endblock %}
{% endif %} {% block extra_content %}{% endblock %} {% endblock %}
{% block extra_js %}{% endblock %}