This commit is contained in:
terorie 2018-12-07 00:46:39 +01:00
parent 03610b3b5b
commit 1fe9ef9e61
No known key found for this signature in database
GPG Key ID: C268B2BBDA2ABECB
2 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ a {
.table td { .table td {
padding: 2px 0; padding: 2px 0;
} }
.table-numeric td { .td-numeric {
text-align: end; text-align: end;
} }

View File

@ -86,11 +86,11 @@
{% for server in crawl_server_stats %} {% for server in crawl_server_stats %}
<tr> <tr>
<td><b>{{ server }}</b></td> <td><b>{{ server }}</b></td>
<td class="table-numeric">{{ crawl_server_stats[server].task_count }}</td> <td class="td-numeric">{{ crawl_server_stats[server].task_count }}</td>
<td class="table-numeric">{{ crawl_server_stats[server].time | duration_format() }}</td> <td class="td-numeric">{{ crawl_server_stats[server].time | duration_format() }}</td>
<td class="table-numeric">{{ crawl_server_stats[server].time_avg | duration_format() }}</td> <td class="td-numeric">{{ crawl_server_stats[server].time_avg | duration_format() }}</td>
<td class="table-numeric">{{ crawl_server_stats[server].file_count }}</td> <td class="td-numeric">{{ crawl_server_stats[server].file_count }}</td>
<td class="table-numeric">{{ "%.2f" % crawl_server_stats[server].file_count_avg }}</td> <td class="td-numeric">{{ "%.2f" % crawl_server_stats[server].file_count_avg }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>