Initialize VG-Environment from stable VG-IV baseline

Dieser Commit ist enthalten in:
2026-05-21 19:58:08 +02:00
Commit a1a8147ae2
27 geänderte Dateien mit 3981 neuen und 0 gelöschten Zeilen
+133
Datei anzeigen
@@ -0,0 +1,133 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VendorGet-IV Evidence Dashboard</title>
<link rel="stylesheet" href="dashboard.css">
</head>
<body>
<main class="dashboard">
<header class="dashboard-header">
<h1>VendorGet-IV Evidence Dashboard</h1>
<div id="dashboard-status" class="dashboard-status" aria-live="polite">
Loading evidence status
</div>
<p class="dashboard-notice">
Verwaltungsbereich: Lesen und manuelle Aktionen bleiben verfügbar.
VG-IV dokumentiert browserseitige Consent-/TCF-Zustände als
evidenzielle Spiegelung.
</p>
<section class="maintenance-status" aria-label="Verwaltungsmodus">
<strong>Verwaltungsmodus aktiv: Hintergrundaufzeichnung ist pausiert.</strong>
<dl>
<div>
<dt>Write Suspend</dt>
<dd id="maintenance-write-suspend">-</dd>
</div>
<div>
<dt>Quelle</dt>
<dd id="maintenance-source">-</dd>
</div>
<div>
<dt>Heartbeat</dt>
<dd id="maintenance-heartbeat">-</dd>
</div>
<div>
<dt>Ablauf</dt>
<dd id="maintenance-expires">-</dd>
</div>
</dl>
</section>
</header>
<section class="panel" aria-labelledby="overview-title">
<h2 id="overview-title">Overview</h2>
<dl class="metric-grid">
<div>
<dt>Total Evidence Records</dt>
<dd id="total-count">-</dd>
</div>
<div>
<dt>Locked Records</dt>
<dd id="locked-count">-</dd>
</div>
<div>
<dt>Unlocked Records</dt>
<dd id="unlocked-count">-</dd>
</div>
</dl>
</section>
<section class="panel" aria-labelledby="stores-title">
<h2 id="stores-title">Evidence Stores</h2>
<table>
<thead>
<tr>
<th scope="col">Store</th>
<th scope="col">Records</th>
</tr>
</thead>
<tbody>
<tr>
<td>Consent States</td>
<td id="store-consent-states">-</td>
</tr>
<tr>
<td>Consent Events</td>
<td id="store-consent-events">-</td>
</tr>
<tr>
<td>Observed Requests</td>
<td id="store-observed-requests">-</td>
</tr>
<tr>
<td>GVL Snapshots</td>
<td id="store-gvl-snapshots">-</td>
</tr>
<tr>
<td>GVL Snapshot Events</td>
<td id="store-gvl-snapshot-events">-</td>
</tr>
</tbody>
</table>
</section>
<section class="panel" aria-labelledby="retention-title">
<h2 id="retention-title">Retention Status</h2>
<p>
Locked records are protected from partial purge. Full deletion still
requires explicit confirmation.
</p>
<div class="retention-actions">
<button id="lock-all-button" type="button">
Alle Evidenzen als DSGVO-/DSAR-relevant markieren
</button>
<button id="unlock-all-button" type="button">
Alle Evidenz-Sperren entfernen
</button>
</div>
</section>
<section class="panel" aria-labelledby="administration-title">
<h2 id="administration-title">Administration</h2>
<div class="admin-actions">
<button id="gvl-fetch-official-button" type="button">
Official IAB GVL Fetch
</button>
<button id="gvl-import-button" type="button">
GVL JSON importieren
</button>
<button id="evidence-delete-button" type="button">
Evidence Delete
</button>
</div>
<div id="admin-status" class="admin-status" aria-live="polite">
Bereit
</div>
</section>
</main>
<script src="dashboard.js"></script>
</body>
</html>