mirror of
https://github.com/simon987/od-database.git
synced 2025-12-13 14:59:02 +00:00
Crawl tasks are now fetched by the crawlers instead of pushed by the server
This commit is contained in:
@@ -7,14 +7,13 @@
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Server</th>
|
||||
<th>Crawler</th>
|
||||
<th>Website</th>
|
||||
<th>Status code</th>
|
||||
<th>File count</th>
|
||||
<th>Start</th>
|
||||
<th>End</th>
|
||||
<th>Delta</th>
|
||||
<th>Index</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -25,10 +24,9 @@
|
||||
<td><a href="/website/{{ task_result.website_id }}/">#{{ task_result.website_id }}</a></td>
|
||||
<td>{{ task_result.status_code }}</td>
|
||||
<td>{{ task_result.file_count }}</td>
|
||||
<td>{{ task_result.start_time | datetime_format }}</td>
|
||||
<td>{{ task_result.end_time | datetime_format }}</td>
|
||||
<td>{{ task_result.start_time | int | datetime_format }}</td>
|
||||
<td>{{ task_result.end_time | int | datetime_format }}</td>
|
||||
<td>{{ ((task_result.end_time - task_result.start_time)) | int }} sec</td>
|
||||
<td>{{ task_result.indexed_time | datetime_format }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user