ING/templates/log.html

91 lines
No EOL
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>
Logdatei
</title>
<link rel="stylesheet"
href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="header">
<div class="header-left">
<img class="logo-ing"
src="{{ url_for('static', filename='logo_ing.png') }}">
<div>
<div class="title">
ING Finanzen
</div>
<div class="subtitle">
Logdatei
</div>
</div>
</div>
<img class="logo-hintergasse"
src="{{ url_for('static', filename='logo_hintergasse.png') }}">
</div>
<div class="navbar">
<a href="/">Dashboard</a>
<a href="/categories">Kategorien</a>
<a href="/maintenance">Wartung</a>
<a href="/log">Log</a>
</div>
<div class="log-actions">
<a href="/log/download">
<button type="button">
Download
</button>
</a>
<a href="/log/delete"
onclick="return confirm('Logdatei löschen und Backup anlegen?');">
<button type="button">
Löschen
</button>
</a>
</div>
<div class="container">
<div class="card">
<h2>
Letzte 200 Logzeilen
</h2>
<pre class="log-viewer">{{ log_content }}</pre>
</div>
</div>
<div class="footer">
Hintergasse © 2026
</div>
</body>
</html>