mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 07:30:13 +01:00
13 lines
408 B
HTML
13 lines
408 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section>
|
|
<h2>Page not found</h2>
|
|
<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>
|
|
<p><a class="btn" href="/">Go home</a></p>
|
|
<details>
|
|
<summary>Details</summary>
|
|
<pre>Status: {{ status }}
|
|
Path: {{ request.url.path }}</pre>
|
|
</details>
|
|
{% endblock %}
|