2015-09-25 22:19:29 +00:00
|
|
|
<div>
|
|
|
|
<div class="page-header">
|
|
|
|
<h1>Job {{job.id}}</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
2015-09-28 22:05:43 +00:00
|
|
|
<ul>
|
|
|
|
<li> started {{job.started}} </li>
|
|
|
|
<li> finished {{job.finished}} </li>
|
|
|
|
<li> status {{job.status}} </li>
|
|
|
|
<li> sites={{sites}} </li>
|
|
|
|
</ul>
|
|
|
|
<ul>
|
|
|
|
<li ng-repeat="site in sites">
|
|
|
|
{{site}}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>id</th>
|
|
|
|
<th>seed</th>
|
|
|
|
<!-- <th>pages</th> -->
|
|
|
|
<th>urls</th>
|
|
|
|
<th>new data</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="site in sites">
|
|
|
|
<td><a href="/sites/{{site.id}}">{{site.id}}</a></td>
|
|
|
|
<td>{{site.seed}}</td>
|
|
|
|
<td>{{site.stats.total.urls}}</td>
|
|
|
|
<td>{{site.stats.new.wire_bytes | byteformat}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-25 22:19:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-28 22:05:43 +00:00
|
|
|
|