15 lines
671 B
HTML
Executable File
15 lines
671 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1 class="page-title">Audit-Log</h1>
|
|
<div class="sz" style="margin-bottom:12px">Alle sicherheitsrelevanten Aktionen dieses Mandanten (Anmeldungen, Aenderungen). Aufbewahrung gemaess Einstellungen.</div>
|
|
<table class="audit">
|
|
<thead><tr><th>Zeitpunkt (UTC)</th><th>Benutzer</th><th>Aktion</th><th>Objekt</th></tr></thead>
|
|
<tbody>
|
|
{% for e in rows %}
|
|
<tr><td class="sz">{{ e.zeit }}</td><td>{{ e.user }}</td><td>{{ e.aktion }}</td><td class="sz">{{ e.objekt }}</td></tr>
|
|
{% endfor %}
|
|
{% if rows.is_empty() %}<tr><td colspan="4" class="sz">Keine Eintraege.</td></tr>{% endif %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|