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>
47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{% block title %}Apex Console{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('runtime_console_assets', path='console.css') }}" />
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="app-shell">
|
|
<aside class="sidebar" aria-label="Console navigation">
|
|
<div class="brand">
|
|
<span class="brand-icon" aria-hidden="true">AM</span>
|
|
<div>
|
|
<strong>Apex Console</strong>
|
|
<span>Runtime /ui</span>
|
|
</div>
|
|
</div>
|
|
<nav class="nav-list">
|
|
<a
|
|
class="nav-button{% if active_section == 'dashboard' %} active{% endif %}"
|
|
href="{{ url_for('runtime_console_dashboard') }}"
|
|
>
|
|
<span>Devices</span>
|
|
</a>
|
|
<a
|
|
class="nav-button{% if active_section == 'tasks' %} active{% endif %}"
|
|
href="{{ url_for('runtime_console_tasks') }}"
|
|
>
|
|
<span>Tasks</span>
|
|
</a>
|
|
<a
|
|
class="nav-button{% if active_section == 'config' %} active{% endif %}"
|
|
href="{{ url_for('runtime_console_config') }}"
|
|
>
|
|
<span>Config</span>
|
|
</a>
|
|
</nav>
|
|
</aside>
|
|
<main class="workspace">
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|