Initial commit

This commit is contained in:
2026-02-12 10:50:49 +01:00
commit 3a0bb1cd37
30 changed files with 2571 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends 'admin/base.html' %}
{% block content %}
<div class="d-flex justify-content-between align-items-center">
<h4 class="m-0">System Logs</h4>
<a class="btn btn-outline-secondary btn-sm" href="{{ url_for('admin.system_logs') }}">Refresh</a>
</div>
<div class="text-muted mt-2"><small>{{ log_path }}</small></div>
<pre class="mt-3 p-3 bg-dark text-light" style="height:70vh; overflow:auto; white-space:pre-wrap;">{% for line in lines %}{{ line }}{% endfor %}</pre>
{% endblock %}