This commit is contained in:
2026-08-30 11:01:19 +02:00
parent a34cf42f0e
commit fcae3569fc
17 changed files with 679 additions and 1 deletions
+37
View File
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Netatmo weather graphs</title>
<link rel="stylesheet" href="{{ url_for('static', filename='dashboard.css') }}">
</head>
<body>
<header>
<div><span class="eyebrow">GetNetatmoData v2</span><h1>Weather at home</h1></div>
<nav aria-label="Graph period">
<button data-period="day" class="active">1 day</button>
<button data-period="2weeks">2 weeks</button>
<button data-period="year">1 year</button>
</nav>
</header>
<main>
{% for name in rrd_names %}
<section class="card">
<h2>{{ name|title }}</h2>
<img src="{{ url_for('graph', rrd_name=name, period='day') }}" alt="{{ name|title }} measurements" data-name="{{ name }}">
</section>
{% endfor %}
</main>
<script>
const buttons = document.querySelectorAll('button[data-period]');
buttons.forEach(button => button.addEventListener('click', () => {
buttons.forEach(item => item.classList.toggle('active', item === button));
document.querySelectorAll('img[data-name]').forEach(image => {
image.src = `/graph/${image.dataset.name}/${button.dataset.period}?t=${Date.now()}`;
});
}));
</script>
</body>
</html>