From 1e972738d4d25a28a29583f8f710786710459561 Mon Sep 17 00:00:00 2001 From: Rizqi Date: Mon, 22 Jun 2026 02:17:57 +0700 Subject: [PATCH] feat: add detailed job information view template to display status and configuration --- templates/job_detail.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/job_detail.html b/templates/job_detail.html index 8b85038..b9b6e44 100644 --- a/templates/job_detail.html +++ b/templates/job_detail.html @@ -391,7 +391,7 @@ poll(); {% elif job.status == 'finished' %} setProgress({ pct: 100, phase: 'done', detail: 'Backup completed successfully' }); - {% elif job.status.startsWith('failed') %} + {% elif job.status.startswith('failed') %} setProgress({ pct: 0, phase: 'failed', detail: '{{ job.status }}' }); {% else %} var pollTimer;