17 lines
436 B
HTML
17 lines
436 B
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}Logs – MK Control{% endblock %}
|
||
|
||
{% block content %}
|
||
<div class="container my-5">
|
||
<h1>Log-Datei (app.log)</h1>
|
||
|
||
<pre class="bg-dark text-light p-4 rounded" style="max-height: 70vh; overflow-y: auto; font-size: 0.9rem;">
|
||
{{ logs | safe }}
|
||
</pre>
|
||
|
||
<div class="mt-4">
|
||
<a href="{{ url_for('admin') }}" class="btn btn-secondary">Zurück zum Admin</a>
|
||
</div>
|
||
</div>
|
||
{% endblock %} |