Replaces the separate Vue/Vite `console/` SPA with a same-origin, server-rendered console built on a module-level Jinja2 Environment with select_autoescape(["html","xml"]). - Add api/console_web.py with /ui/ routes (dashboard, tasks, task detail/timeline, config) and a _status_fragment polled every 10s. - Refactor api/console.py into a typed ConsoleService shared by the JSON and HTML routers so validation/persistence cannot drift. - Remove RUNTIME_CONSOLE_STATIC_DIR, SpaStaticFiles, and the wildcard CORS middleware from api/rest.py; GET / now redirects to /ui/. - Delete the top-level console/ project; add jinja2 and python-multipart as direct dependencies and ship templates/CSS/JS via package-data. - Add 31 tests (XSS probes, PRG flows, fragment refresh, no-static-dir and no-CORS regressions, wheel-packaging smoke test). /console/* JSON endpoints remain unchanged. The console keeps the trusted-network-only boundary; auth/CSRF is intentionally deferred. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
<div class="metrics">
|
|
<div class="metric">
|
|
<span class="metric-label">Devices</span>
|
|
<strong>{{ device_count }}</strong>
|
|
</div>
|
|
<div class="metric">
|
|
<span class="metric-label">Running</span>
|
|
<strong>{{ running_tasks }}</strong>
|
|
</div>
|
|
<div class="metric">
|
|
<span class="metric-label">Failed</span>
|
|
<strong>{{ failed_tasks }}</strong>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="panel">
|
|
<div class="section-title">
|
|
<h2>Device Status</h2>
|
|
</div>
|
|
{% if not devices %}
|
|
<div class="empty-state">
|
|
<span>No devices registered. Add one from Config.</span>
|
|
</div>
|
|
{% else %}
|
|
<ul class="device-list">
|
|
{% for device in devices %}
|
|
<li class="device-row">
|
|
<div>
|
|
<strong>{{ device.name or device.id }}</strong>
|
|
<span>{{ device.id }}</span>
|
|
</div>
|
|
<div class="row-meta">
|
|
<span class="driver-label">{{ device.driver_type }}</span>
|
|
<span class="status-pill {{ device.status }}">{{ device.status }}</span>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</section>
|