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 info_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
|
|
|
{{ 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>
|
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 %}
|