Major additions: - Web UI: Jinja2 templates in FastAPI (login, dashboard, catalog, corporate memory, admin) - API: catalog profiles/metrics, telegram verify/unlink/status, admin table registry CRUD - Corporate memory governance: approve/reject/mandate/revoke/edit/batch + audit log - Sync: real DataSyncManager trigger, sync-settings, table-subscriptions - CLI: setup (init/test/deploy/verify), server (logs/restart/deploy/backup), explore - Instance config integration (instance.yaml loaded at startup) - 140 tests passing (25 new)
13 lines
348 B
HTML
13 lines
348 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Error {{ code }} - Data Analyst Portal{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="error-container">
|
|
<div class="error-card">
|
|
<h2>Error {{ code }}</h2>
|
|
<p>{{ error }}</p>
|
|
<a href="{{ url_for('index') }}" class="btn btn-primary">Go Home</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|