From cd0be3026c05dacfe5b09f13e6342c2b52f6ba26 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Mon, 8 Sep 2025 11:47:08 +0200 Subject: [PATCH] Fix timezones in the backuplist page --- templates/backup_jobs.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/backup_jobs.html b/templates/backup_jobs.html index a9e2d16..e146d86 100644 --- a/templates/backup_jobs.html +++ b/templates/backup_jobs.html @@ -56,7 +56,7 @@

Backup Jobs

{% if job.started_at %} - {{ job.started_at.strftime('%Y-%m-%d %H:%M') }} + {{ job.started_at | format_local_time('%Y-%m-%d %H:%M') }} {% else %} Not started {% endif %} @@ -132,7 +132,7 @@