mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 07:30:13 +01:00
17 lines
506 B
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 %}
|