only show meaningful extra job content on job summary page - for now path* only

This commit is contained in:
2021-06-11 23:32:48 +10:00
parent 8b5633ea23
commit 68f0fdcc33

View File

@@ -10,7 +10,9 @@
row='<tr><td><a href="{{url_for('joblog', id=job.id)}}">Job #{{job.id}} - {{job.name}}</a>'
{% if job.name != "rmdups" %}
{% for ex in job.extra %}
row+=' ({{ex.name}} == {{ ex.value }})'
{% if 'path' in ex.name %}
row+=' ({{ex.name}} == {{ ex.value }})'
{% endif %}
{% endfor %}
{% endif %}
row+= '</td><td>{{job.start_time}}</td><td>'