Files
iface_ecosio/templates/show_log.html
T
2026-02-25 10:24:12 +01:00

26 lines
684 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>log</title>
<style>
pre {
white-space: pre-wrap;
word-wrap: break-word;
background: #f4f4f4;
padding: 1em;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<h1>log</h1><br/>
<a href="{{ url_for('show_log', loglevel=0)}}"><button type="button">INFO+</button></a>&nbsp;
<a href="{{ url_for('show_log', loglevel=1)}}"><button type="button">WARNING+</button></a>&nbsp;
<a href="{{ url_for('show_log', loglevel=2)}}"><button type="button">ERROR+</button></a>&nbsp;
<pre>{{ txt }}</pre>
<p><a href="/invoice">Back</a></p>
</body>
</html>