mirror of
https://github.com/simon987/od-database.git
synced 2025-12-16 16:19:05 +00:00
test
This commit is contained in:
@@ -83,14 +83,15 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for server in crawl_server_stats %}
|
||||
{% for entry in crawl_server_stats %}
|
||||
{% set server, info = entry %}
|
||||
<tr>
|
||||
<td><b>{{ server }}</b></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>
|
||||
<td class="td-numeric">{{ info.task_count }}</td>
|
||||
<td class="td-numeric">{{ info.time | duration_format() }}</td>
|
||||
<td class="td-numeric">{{ info.time_avg | duration_format() }}</td>
|
||||
<td class="td-numeric">{{ info.file_count }}</td>
|
||||
<td class="td-numeric">{{ "%.2f" % info.file_count_avg }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user