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 @@