You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
333 B
17 lines
333 B
4 weeks ago
|
<!-- templates/logs.html -->
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>View Logs</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Application Logs</h1>
|
||
|
<pre>
|
||
|
{% for log in logs %}
|
||
|
{{ log }}
|
||
|
{% endfor %}
|
||
|
</pre>
|
||
|
<a href="{{ url_for('index') }}">Back to Home</a>
|
||
|
</body>
|
||
|
</html>
|