Web UI polish: thumbnail-hover preview, white thumbnail selection, Themes bullet list; global Scryfall image retry (thumbs+previews) with fallbacks and cache-bust; standardized data-card-name. Deck Summary alignment overhaul (count//name/owned grid, tabular numerals, inset highlight, tooltips, starts under header). Added diagnostics (health + logs pages, error pages, request-id propagation), global HTMX error toasts, and docs updates. Update DOCKER guide and add run-web scripts. Update CHANGELOG and release notes template.
2025-08-27 11:21:46 -07:00
|
|
|
{% extends "base.html" %}
|
2025-10-28 08:21:52 -07:00
|
|
|
{% from 'partials/_buttons.html' import button %}
|
|
|
|
|
{% from 'partials/_panels.html' import simple_panel %}
|
|
|
|
|
|
Web UI polish: thumbnail-hover preview, white thumbnail selection, Themes bullet list; global Scryfall image retry (thumbs+previews) with fallbacks and cache-bust; standardized data-card-name. Deck Summary alignment overhaul (count//name/owned grid, tabular numerals, inset highlight, tooltips, starts under header). Added diagnostics (health + logs pages, error pages, request-id propagation), global HTMX error toasts, and docs updates. Update DOCKER guide and add run-web scripts. Update CHANGELOG and release notes template.
2025-08-27 11:21:46 -07:00
|
|
|
{% block content %}
|
|
|
|
|
<section>
|
2025-10-28 08:21:52 -07:00
|
|
|
{{ 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;">
|
Web UI polish: thumbnail-hover preview, white thumbnail selection, Themes bullet list; global Scryfall image retry (thumbs+previews) with fallbacks and cache-bust; standardized data-card-name. Deck Summary alignment overhaul (count//name/owned grid, tabular numerals, inset highlight, tooltips, starts under header). Added diagnostics (health + logs pages, error pages, request-id propagation), global HTMX error toasts, and docs updates. Update DOCKER guide and add run-web scripts. Update CHANGELOG and release notes template.
2025-08-27 11:21:46 -07:00
|
|
|
<summary>Details</summary>
|
|
|
|
|
<pre>Status: {{ status }}
|
|
|
|
|
Path: {{ request.url.path }}</pre>
|
|
|
|
|
</details>
|
2025-10-28 08:21:52 -07:00
|
|
|
</section>
|
Web UI polish: thumbnail-hover preview, white thumbnail selection, Themes bullet list; global Scryfall image retry (thumbs+previews) with fallbacks and cache-bust; standardized data-card-name. Deck Summary alignment overhaul (count//name/owned grid, tabular numerals, inset highlight, tooltips, starts under header). Added diagnostics (health + logs pages, error pages, request-id propagation), global HTMX error toasts, and docs updates. Update DOCKER guide and add run-web scripts. Update CHANGELOG and release notes template.
2025-08-27 11:21:46 -07:00
|
|
|
{% endblock %}
|