mirror of
https://github.com/simon987/od-database.git
synced 2025-04-20 02:46:45 +00:00
Fix right align
This commit is contained in:
parent
b36bf71995
commit
03610b3b5b
@ -71,7 +71,7 @@
|
||||
</table>
|
||||
|
||||
<h4>Crawl server stats</h4>
|
||||
<table class="table table-striped table-numeric">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Server</th>
|
||||
@ -86,11 +86,11 @@
|
||||
{% for server in crawl_server_stats %}
|
||||
<tr>
|
||||
<td><b>{{ server }}</b></td>
|
||||
<td>{{ crawl_server_stats[server].task_count }}</td>
|
||||
<td>{{ crawl_server_stats[server].time | duration_format() }}</td>
|
||||
<td>{{ crawl_server_stats[server].time_avg | duration_format() }}</td>
|
||||
<td>{{ crawl_server_stats[server].file_count }}</td>
|
||||
<td>{{ "%.2f" % crawl_server_stats[server].file_count_avg }}</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>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
Loading…
x
Reference in New Issue
Block a user