This commit is contained in:
Bastian Wagner
2026-08-15 20:54:35 +02:00
parent 2aba1265af
commit 420d089760
9 changed files with 178 additions and 8 deletions

View File

@@ -31,4 +31,30 @@
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button type="submit">Sync all now</button>
</form>
<h2>System log</h2>
<div class="card">
{% if log_entries %}
<table>
<thead>
<tr>
<th>Time</th>
<th>Source</th>
<th>Message</th>
</tr>
</thead>
<tbody>
{% for entry in log_entries %}
<tr>
<td>{{ entry.created_at }}</td>
<td>{{ entry.source }}</td>
<td>{{ entry.message }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p class="empty-state">No system log entries.</p>
{% endif %}
</div>
{% endblock %}