mirror of
https://github.com/simon987/od-database.git
synced 2025-12-14 15:19:03 +00:00
html
This commit is contained in:
@@ -19,7 +19,7 @@ a {
|
||||
.table td {
|
||||
padding: 2px 0;
|
||||
}
|
||||
.table-numeric td {
|
||||
.td-numeric {
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
|
||||
@@ -86,11 +86,11 @@
|
||||
{% for server in crawl_server_stats %}
|
||||
<tr>
|
||||
<td><b>{{ server }}</b></td>
|
||||
<td class="table-numeric">{{ crawl_server_stats[server].task_count }}</td>
|
||||
<td class="table-numeric">{{ crawl_server_stats[server].time | duration_format() }}</td>
|
||||
<td class="table-numeric">{{ crawl_server_stats[server].time_avg | duration_format() }}</td>
|
||||
<td class="table-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">{{ crawl_server_stats[server].task_count }}</td>
|
||||
<td class="td-numeric">{{ crawl_server_stats[server].time | duration_format() }}</td>
|
||||
<td class="td-numeric">{{ crawl_server_stats[server].time_avg | duration_format() }}</td>
|
||||
<td class="td-numeric">{{ crawl_server_stats[server].file_count }}</td>
|
||||
<td class="td-numeric">{{ "%.2f" % crawl_server_stats[server].file_count_avg }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user