timestamp formatting

This commit is contained in:
Daniel Bulant 2026-03-14 19:45:22 +01:00
parent ea997b3d36
commit 23eb7eef89
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
{% for row in list %}
<article class="card">
<div class="contents">
<header>@ {{row['timestamp']}}</header>
<header>@ {{row['timestamp']|format_datetime}}</header>
<div>
CO2: <b>{{row['co2']}}</b>
TVOC: <b>{{row['tvoc']}}</b>

View file

@ -6,7 +6,7 @@
{% for row in list %}
<article class="card">
<div class="contents">
<header>@ {{row['timestamp']}}</header>
<header>@ {{row['timestamp']|format_datetime}}</header>
CO2: {{row['co2']}}
TVOC: {{row['tvoc']}}
</div>