Commit 4c355ce 1 parent 39116b8 commit 4c355ce Copy full SHA for 4c355ce
File tree 1 file changed +5
-4
lines changed
batch/batch/front_end/templates
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,11 @@ <h2>Properties</h2>
15
15
< li > Time Completed: {% if 'time_completed' in batch and batch['time_completed'] is not none %}{{ batch['time_completed'] }}{% endif %}</ li >
16
16
< li > Total Jobs: {{ batch['n_jobs'] }}</ li >
17
17
< ul >
18
- < li > Pending Jobs: {{ batch['n_jobs'] - batch['n_completed'] }}</ li >
19
- < li > Succeeded Jobs: {{ batch['n_succeeded'] }}</ li >
20
- < li > Failed Jobs: {{ batch['n_failed'] }}</ li >
21
- < li > Cancelled Jobs: {{ batch['n_cancelled'] }}</ li >
18
+ < li > < a href ="{{ base_path }}/batches/{{ batch['id'] }}?q=pending "> Pending</ a >
19
+ + < a href ="{{ base_path }}/batches/{{ batch['id'] }}?q=running "> Running</ a > Jobs: {{ batch['n_jobs'] - batch['n_completed'] }}</ li >
20
+ < li > < a href ="{{ base_path }}/batches/{{ batch['id'] }}?q=success "> Succeeded</ a > Jobs: {{ batch['n_succeeded'] }}</ li >
21
+ < li > < a href ="{{ base_path }}/batches/{{ batch['id'] }}?q=failed "> Failed</ a > Jobs: {{ batch['n_failed'] }}</ li >
22
+ < li > < a href ="{{ base_path }}/batches/{{ batch['id'] }}?q=cancelled "> Cancelled</ a > Jobs: {{ batch['n_cancelled'] }}</ li >
22
23
</ ul >
23
24
< li > Duration: {% if 'duration' in batch and batch['duration'] is not none %}{{ batch['duration'] }}{% endif %}</ li >
24
25
< li > Cost: {% if 'cost' in batch and batch['cost'] is not none %}{{ batch['cost'] }}{% endif %}</ li >
You can’t perform that action at this time.
0 commit comments