26 lines
684 B
HTML
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>
|
||
|
|
<a href="{{ url_for('show_log', loglevel=1)}}"><button type="button">WARNING+</button></a>
|
||
|
|
<a href="{{ url_for('show_log', loglevel=2)}}"><button type="button">ERROR+</button></a>
|
||
|
|
|
||
|
|
<pre>{{ txt }}</pre>
|
||
|
|
|
||
|
|
<p><a href="/invoice">Back</a></p>
|
||
|
|
</body>
|
||
|
|
</html>
|