Files

26 lines
563 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<title>audio resive</title>
<link href="{{ url_for('static', path='/css/logs.css') }}" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Logs</h1>
{% if logs %}
<ul class="logs-list">
{% for log in logs %}
<li>
<form method="get" action="/logs/{{ log[0] }}">
<button type="submit">{{ log[1] }}</button>
</form>
</li>
{% endfor %}
</ul>
{% else %}
<p>No logs found.</p>
{% endif %}
</div>
</body>
</html>