Skip to content
Snippets Groups Projects
Commit 03cb9bb3 authored by Vermaat's avatar Vermaat
Browse files

Merge pull request #115 from mutalyzer/counters

Fix counters reporting on about page
parents 10959a80 efee4adb
No related branches found
No related tags found
No related merge requests found
...@@ -240,14 +240,16 @@ always be compared directly. ...@@ -240,14 +240,16 @@ always be compared directly.
counter_totals['batch-job/webservice']|d(0)) }}</td> counter_totals['batch-job/webservice']|d(0)) }}</td>
</tr> </tr>
<tr> <tr>
<td>Total (excluding batch jobs)</td> <td>Total (all services)</td>
<td class="text-right">{{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0) + <td class="text-right">{{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0) +
counter_totals['name-checker/website']|d(0) + counter_totals['name-checker/website']|d(0) +
counter_totals['description-extractor/website']|d(0) +
counter_totals['position-converter/website']|d(0) + counter_totals['position-converter/website']|d(0) +
counter_totals['snp-converter/website']|d(0) + counter_totals['snp-converter/website']|d(0) +
counter_totals['batch-job/website']|d(0)) }}</td> counter_totals['batch-job/website']|d(0)) }}</td>
<td class="text-right">{{ '{0:,}'.format(counter_totals['syntax-checker/webservice']|d(0) + <td class="text-right">{{ '{0:,}'.format(counter_totals['syntax-checker/webservice']|d(0) +
counter_totals['name-checker/webservice']|d(0) + counter_totals['name-checker/webservice']|d(0) +
counter_totals['description-extractor/webservice']|d(0) +
counter_totals['position-converter/webservice']|d(0) + counter_totals['position-converter/webservice']|d(0) +
counter_totals['snp-converter/webservice']|d(0) + counter_totals['snp-converter/webservice']|d(0) +
counter_totals['batch-job/webservice']|d(0)) }}</td> counter_totals['batch-job/webservice']|d(0)) }}</td>
...@@ -261,6 +263,8 @@ always be compared directly. ...@@ -261,6 +263,8 @@ always be compared directly.
counter_totals['name-checker/website']|d(0) + counter_totals['name-checker/website']|d(0) +
counter_totals['name-checker/webservice']|d(0) + counter_totals['name-checker/webservice']|d(0) +
counter_totals['name-checker/batch']|d(0) + counter_totals['name-checker/batch']|d(0) +
counter_totals['description-extractor/website']|d(0) +
counter_totals['description-extractor/webservice']|d(0) +
counter_totals['position-converter/website']|d(0) + counter_totals['position-converter/website']|d(0) +
counter_totals['position-converter/webservice']|d(0) + counter_totals['position-converter/webservice']|d(0) +
counter_totals['position-converter/batch']|d(0) + counter_totals['position-converter/batch']|d(0) +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment