broad (small) changes to make style of all routes and jobs to be consistent, e.g. use underscords between words

This commit is contained in:
2023-01-15 23:17:59 +11:00
parent dc11a0697b
commit 4b1bbcb2bf
16 changed files with 88 additions and 86 deletions

View File

@@ -27,9 +27,9 @@
{% endif %}
row+='<a href="{{url_for('joblog', id=job.id)}}">Job #{{job.id}} - {{job.name}}</a>'
{% endif %}
{% if job.name != "rmdups" %}
{% if job.name != "rm_dups" %}
{% for ex in job.extra %}
{% if 'path' == ex.name or ('path_prefix'==ex.name and job.name == 'checkdups') %}
{% if 'path' == ex.name or ('path_prefix'==ex.name and job.name == 'check_dups') %}
row+=' ({{ex.name}} == {{ ex.value }})'
{% endif %}
{% endfor %}