put title on progress bars so on hover you get the details, useful when you have 1 of 10000 on a slow job
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
{% set prog=(job.current_file_num/job.num_files*100)|round|int %}
|
||||
row +=`
|
||||
<div class="progress">
|
||||
<div class="progress-bar bg-info" role="progressbar" style="width: {{prog}}%;" aria-valuenow="{{prog}}" aria-valuemin="0" aria-valuemax="100">
|
||||
<div title="{{job.current_file_num}} of {{job.num_files}} - {{prog}}%" class="progress-bar bg-info" role="progressbar" style="width: {{prog}}%;" aria-valuenow="{{prog}}" aria-valuemin="0" aria-valuemax="100">
|
||||
{{job.current_file_num}} of {{job.num_files}} - {{prog}}%
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user