From 5a6fb464ce5afca44138b2004bcef68b033084d5 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 5 Feb 2025 15:50:14 +0000 Subject: [PATCH] jobs: Fix formatting timeout time Signed-off-by: Michael Tremer --- src/templates/jobs/macros.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/jobs/macros.html b/src/templates/jobs/macros.html index d056f72c..840a0714 100644 --- a/src/templates/jobs/macros.html +++ b/src/templates/jobs/macros.html @@ -120,7 +120,7 @@ {# If the job is approaching its timeout, we will show a warning #} {% if job.times_out_in and job.times_out_in <= datetime.timedelta(hours=1) %} - / {{ format_time(job.timeout) }} + / {{ job.timeout | format_time }} {% endif %} -- 2.47.3