Files
SyncPlayer/templates/admin/system_logs.html
2026-02-12 10:50:49 +01:00

10 lines
501 B
HTML

{% 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 %}