mtg_python_deckbuilder/code/web/templates/errors/500.html

17 lines
506 B
HTML

{% extends "base.html" %}
{% from 'partials/_buttons.html' import button %}
{% from 'partials/_panels.html' import info_panel %}
{% block content %}
<section>
{{ info_panel(
icon='❌',
title='Internal Server Error',
content='Something went wrong. Our team has been notified.<br><br>
<span class="muted">Request ID: <code>' ~ (request_id or request.state.request_id) ~ '</code></span>',
type='error',
action_text='Go Home',
action_href='/'
) }}
</section>
{% endblock %}