21 lines
618 B
TypeScript
21 lines
618 B
TypeScript
export default async function AdminAuditPage() {
|
|
return (
|
|
<div className="flex flex-col gap-6">
|
|
<div>
|
|
<h1 className="text-2xl font-bold">Protokoll</h1>
|
|
<p className="text-muted-foreground">
|
|
Mandantenübergreifendes Änderungsprotokoll
|
|
</p>
|
|
</div>
|
|
|
|
<div className="rounded-lg border p-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
Alle Datenänderungen (Erstellen, Ändern, Löschen, Sperren)
|
|
über alle Mandanten hinweg. Filtert nach Zeitraum, Benutzer,
|
|
Tabelle und Aktion.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|