fix empty db state

This commit is contained in:
Daniel Bulant 2026-03-14 20:56:22 +01:00
parent 9e9514db8c
commit afe12787c9
No known key found for this signature in database

View file

@ -13,6 +13,8 @@ htmx = HTMX(app)
@app.template_filter()
def format_datetime(value):
if not value:
return value
return datetime.fromtimestamp(value).isoformat()