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

25 lines
702 B
HTML

{% extends "base.html" %}
{% from 'partials/_buttons.html' import button %}
{% from 'partials/_panels.html' import simple_panel %}
{% block content %}
<section>
{{ simple_panel(
title='Page Not Found',
content='<p>The page you requested could not be found.</p>
<p class="muted">Request ID: <code>' ~ (request_id or request.state.request_id) ~ '</code></p>',
variant='bordered',
padding='lg'
) }}
<div style="margin-top: 1rem;">
{{ button('Go Home', variant='primary', href='/') }}
</div>
<details style="margin-top: 1rem;">
<summary>Details</summary>
<pre>Status: {{ status }}
Path: {{ request.url.path }}</pre>
</details>
</section>
{% endblock %}