- cove_importer.py: add _backfill_colorbar_runs() to reconstruct up to
27 days of history from the D09F08 28-day colorbar when a new run is
created; idempotent via external_id deduplication
- routes_cove.py: add GET /cove/run/<run_id>/detail endpoint returning
structured Cove account info and per-datasource objects for popups
- routes_run_checks.py: add cove_summary to run payload for cove_api runs
with readable datasource labels; hide mail section for Cove runs
- routes_jobs.py: add source_type to history_rows dict
- job_detail.html: Cove run rows clickable; JS routes to cove_run_detail;
Cove summary panel added, mail section hidden for Cove runs
- run_checks.html: Cove summary panel added; JS handles cove_summary
- technical-notes-codex.md: document new route, popup behaviour, and
historical backfill
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Pass customer_rows (list of {id, name} dicts) instead of SQLAlchemy
objects so the Jinja tojson filter can serialize them in JavaScript.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Remove per-row Link/Create Job button and inline modals
- Make unmatched rows clickable to open a single shared modal
- Create new job tab: customer via datalist (auto-complete),
job name and backup type shown read-only (derived from user/section)
- Route: derive job_name and backup_type server-side, not from form
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- POST /cloud-connect/accounts/scan-inbox: queries all inbox mails with
backup_type 'cloud connect report', calls upsert_cloud_connect_report()
for each, flashes a summary of accounts upserted and runs created
- 'Scan inbox mails' button added to Cloud Connect Accounts page header
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- base.html: hardcode data-bs-theme="dark", remove theme detection JS
and theme selector form from sidebar footer
- layout.css: replace dark/light theme selectors with unconditional
dark background for .bc-main
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Replace Bootstrap display-6 stats with bc-stat-grid layout:
Inbox card spans 2 columns; status values colored by type
(success=green, warning=yellow, failed=red, override=blue, muted=grey)
- Fix extra </div> that caused large empty space below stats
- Compact Legend to horizontal flex-wrap row
- Move System status card above description text
- Shorten description to 3 paragraphs
- Add bc-stat-grid / bc-stat-card CSS to layout.css
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- settings_orphaned_jobs.html: remove outer container-fluid div (bc-content
already provides padding in the new sidebar layout)
- changelog.html: reduce sticky-top offset from 80px to 24px (no topnav
anymore, only sidebar)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Icon and nav macros were defined after </html> but called earlier in the
template. Jinja2 processes macros sequentially, so moved all macro
definitions to the top of base.html before the <!doctype html> tag.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Redesign layout to fixed dark sidebar (220px) with IBM Plex Sans/Mono
fonts and CSS design tokens; full rewrite of layout.css and base.html
- Move missed-run generation and Autotask ticket polling to a daemon
background thread on Run Checks page load (throttled per job, 10 min)
- Cove manual import now logs and shows per-skip-reason breakdown
- Cove timestamp parser handles ms/us/ns epochs and .NET /Date(ms)/ strings
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>