Skip to content

Commit 52ce01a

Browse files
committed
add job id to admin jobs
1 parent da851aa commit 52ce01a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

qiita_pet/handlers/admin_processing_job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def get(self):
8080

8181
jobs.append([job.id, job.command.name, job.status, msg,
8282
outputs, validator_jobs, heartbeat,
83-
job.parameters.values])
83+
job.parameters.values, job.external_id])
8484
results = {
8585
"sEcho": echo,
8686
"recordsTotal": len(jobs),

qiita_pet/templates/admin_processing_job.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
'running': 'text-info'
7171
};
7272

73-
out.push('<b class="' + statusToClass[status] + '">' + status +
73+
out.push('<b class="' + statusToClass[status] + '">' + status + ' (' + row[8] + ')' +
7474
'</b>: ');
7575

7676
if (status === 'running' || status === 'queued') {

0 commit comments

Comments
 (0)