Malý repozitář pro ukládáni programu pro práci s ESP32
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.
 
 
 
 

30 lines
695 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>VYPIST HODNOT</h1>
<table>
<thead>
<tr>
<th>cas</th>
<th>teplota</th>
<th>vlhkost</th>
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
<td> {{ row["timestamp"] }}</td>
<td> {{ row["temperature"] }}</td>
<td> {{ row["humidity"] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>