diff --git a/templates/joblog.html b/templates/joblog.html index 198ec20..8890bbf 100644 --- a/templates/joblog.html +++ b/templates/joblog.html @@ -42,7 +42,7 @@ {% if job.num_files and job.num_files > 0 %}
{% set prog=(job.current_file_num/job.num_files*100)|round|int %} -
+
{{job.current_file_num}} of {{job.num_files}} - {{prog}}%
{% elif job.num_files == 0 and job.current_file_num > 0 %} diff --git a/templates/jobs.html b/templates/jobs.html index ff5f13a..d7165b0 100644 --- a/templates/jobs.html +++ b/templates/jobs.html @@ -10,7 +10,7 @@ row='Job #{{job.id}} - {{job.name}}' {% if job.name != "rmdups" %} {% for ex in job.extra %} - {% if 'path' in ex.name %} + {% if 'path' == ex.name or ('path_prefix'==ex.name and job.name == 'checkdups') %} row+=' ({{ex.name}} == {{ ex.value }})' {% endif %} {% endfor %} @@ -20,7 +20,7 @@ {% if job.num_files and job.num_files > 0 %} {% set prog=(job.current_file_num/job.num_files*100)|round|int %} row +=` -
+
{{job.current_file_num}} of {{job.num_files}} - {{prog}}%