From 273a64ff44a30577f623ff59cc70b6bf435c9bed Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Tue, 14 Jan 2020 17:25:01 +0530 Subject: [PATCH] fix(background_job): use status as get_status is not accessible in html --- frappe/core/page/background_jobs/background_jobs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/page/background_jobs/background_jobs.html b/frappe/core/page/background_jobs/background_jobs.html index 08177ecf8a..c5d598ccd3 100644 --- a/frappe/core/page/background_jobs/background_jobs.html +++ b/frappe/core/page/background_jobs/background_jobs.html @@ -11,7 +11,7 @@ {% for j in jobs %} - {{ j.queue.split(".").slice(-1)[0] }} + {{ j.queue.split(".").slice(-1)[0] }}
{{ frappe.utils.encode_tags(j.job_name) }}