43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bot Logs</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<link rel="icon" href="/static/logo.png" type="image/png">
|
|
<style>
|
|
.logs-container {
|
|
background: rgba(255, 255, 255, 0.6);
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
max-width: 600px;
|
|
width: 100%;
|
|
margin: auto;
|
|
text-align: left;
|
|
}
|
|
.logs-container h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.log-entry {
|
|
background: #f9f9f9;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include "top_bar.html" %}
|
|
<div class="logs-container">
|
|
<h2>Logs für {{ bot_name }}</h2>
|
|
{% for log in logs %}
|
|
<div class="log-entry">{{ log }}</div>
|
|
{% endfor %}
|
|
<a href="{{ url_for('dc_bots') }}" class="black-button">Zurück</a>
|
|
</div>
|
|
</body>
|
|
</html>
|