Skip to content

Commit 7b807b1

Browse files
committed
add external_id to admin jobs page
1 parent 476ec39 commit 7b807b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_pet/templates/admin_processing_job.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@
7171
};
7272

7373
out.push('<b class="' + statusToClass[status] + '">' + status + ' ' +
74-
row[0] + ' </b> [ ' + row[9] + ' ]</br>');
74+
row[0] + ' (' + row[8] + ') </b> [ ' + row[9] + ' ]</br>');
7575

7676
if (status === 'running' || status === 'queued') {
7777
// row[0] is qiita job-id
7878
// row[3] is status 'Step n of 6' and other messages
79-
out.push('[' + row[8] + ']</br> <i>' + row[3] + '</i>')
79+
out.push('<i>' + row[3] + '</i>')
8080
}
8181
else {
8282
// We write a callback attribute on the link to be able to display a

0 commit comments

Comments
 (0)