mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-02-04 23:51:50 +01:00
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
This commit is contained in:
parent
8fa040a05a
commit
0f73a85a4e
43 changed files with 4515 additions and 105 deletions
24
code/web/templates/configs/run_summary.html
Normal file
24
code/web/templates/configs/run_summary.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h2>Run from Config: {{ cfg_name }}</h2>
|
||||
{% if not ok %}
|
||||
<div class="error">Build failed: {{ error }}</div>
|
||||
{% else %}
|
||||
<div class="notice">Build completed.</div>
|
||||
<div style="margin:.5rem 0;">
|
||||
{% if csv_path %}<a class="btn" href="/files?path={{ csv_path | urlencode }}">Download CSV</a>{% endif %}
|
||||
{% if txt_path %}<a class="btn" href="/files?path={{ txt_path | urlencode }}">Download TXT</a>{% endif %}
|
||||
</div>
|
||||
{% if summary %}
|
||||
<hr style="margin:1.25rem 0; border-color: var(--border);" />
|
||||
<h4>Deck Summary</h4>
|
||||
{# Reuse the same inner sections as the build summary page by including its markup #}
|
||||
{% set __summary = summary %}
|
||||
{% set summary = __summary %}
|
||||
{% include "build/_step5.html" ignore missing %}
|
||||
{% else %}
|
||||
<p class="muted">No summary data available.</p>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<p style="margin-top:1rem;"><a href="/configs">Back to Configs</a></p>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue