Files
Weather-App/templates/test.html

29 lines
734 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html>
<head>
<title>Historia pogody - {{ city }}</title>
<style>
body { font-family: Arial; padding: 20px; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 10px; border: 1px solid #ddd; text-align: left; }
</style>
</head>
<body>
<h2>Historia pogody {{ city }}</h2>
<table>
<tr>
<th>Data</th>
<th>Temperatura (°C)</th>
<th>Wiatr (m/s)</th>
</tr>
{% for r in records %}
<tr>
<td>{{ r.time.strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ r.temperature }}</td>
<td>{{ r.windspeed }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>