From 1313f4cfc7b0f36081a23dd36f3c3297c1b0089a Mon Sep 17 00:00:00 2001 From: Firmlyzhu Date: Sat, 30 Mar 2019 18:16:18 +0800 Subject: [PATCH] update batch_list.html --- web/templates/batch/batch_list.html | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/web/templates/batch/batch_list.html b/web/templates/batch/batch_list.html index 56ff385..a243a22 100644 --- a/web/templates/batch/batch_list.html +++ b/web/templates/batch/batch_list.html @@ -80,9 +80,10 @@ ID Name Status - Tasks Operations Create Time + End Time + billing Stdout and Stderr @@ -95,10 +96,15 @@ {{ job_info['job_name'] }} {{ job_info['status'] }} - - Tasks - + + {% if job_info['status'] == 'done' or job_info['status'] == 'failed' or job_info['status'] == 'stopping' or job_info['status'] == 'stopped'%} + + {% else %} + + {% endif %} {{ job_info['create_time'] }} + {{ job_info['end_time'] }} + {{ job_info['billing'] }} Get Output {% endfor %} @@ -118,7 +124,7 @@