Web UI: setup progress + logs folding, Finished Decks library, commander search UX (debounce, keyboard, highlights, color chips), ranking fixes (first-word priority, substring include), optional auto-select; setup start reliability (POST+GET), force runs, status with percent/ETA/timestamps; stepwise builder with added stage reporting and sidecar summaries; keyboard grid wrap-around; restrict commander search to eligible rows
2025-08-26 09:48:25 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block banner_subtitle %}Build a Deck{% endblock %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h2>Build a Deck</h2>
|
2025-08-28 14:57:22 -07:00
|
|
|
<div style="margin:.25rem 0 1rem 0;">
|
|
|
|
|
<button type="button" class="btn" hx-get="/build/new" hx-target="body" hx-swap="beforeend">Build a New Deck…</button>
|
|
|
|
|
<span class="muted" style="margin-left:.5rem;">Quick-start wizard (name, commander, themes, ideals)</span>
|
|
|
|
|
</div>
|
Web UI: setup progress + logs folding, Finished Decks library, commander search UX (debounce, keyboard, highlights, color chips), ranking fixes (first-word priority, substring include), optional auto-select; setup start reliability (POST+GET), force runs, status with percent/ETA/timestamps; stepwise builder with added stage reporting and sidecar summaries; keyboard grid wrap-around; restrict commander search to eligible rows
2025-08-26 09:48:25 -07:00
|
|
|
<div id="wizard">
|
2025-08-28 14:57:22 -07:00
|
|
|
<!-- Wizard content will load here after the modal submit starts the build. -->
|
|
|
|
|
<noscript><p>Enable JavaScript to build a deck.</p></noscript>
|
Web UI: setup progress + logs folding, Finished Decks library, commander search UX (debounce, keyboard, highlights, color chips), ranking fixes (first-word priority, substring include), optional auto-select; setup start reliability (POST+GET), force runs, status with percent/ETA/timestamps; stepwise builder with added stage reporting and sidecar summaries; keyboard grid wrap-around; restrict commander search to eligible rows
2025-08-26 09:48:25 -07:00
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|