Initial commit
This commit is contained in:
9
templates/admin/system_logs.html
Normal file
9
templates/admin/system_logs.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user