39 lines
1.1 KiB
HTML
Raw Normal View History

2015-10-08 00:33:49 +00:00
<ol class="breadcrumb">
2015-10-09 20:31:07 +00:00
<li class="active">Jobs</li>
2015-10-08 00:33:49 +00:00
</ol>
<div class="page-header">
2015-10-09 20:31:07 +00:00
<h1>Brozzler
<a href="/"><img src="/static/brozzler.svg" style="height:1.5em;float:right"></a>
</h1>
2015-10-08 00:33:49 +00:00
</div>
<div>
2015-10-09 20:31:07 +00:00
<h2>Jobs</h2>
2015-10-09 20:31:07 +00:00
<div class="row">
<div class="col-sm-12">
<table class="table table-striped">
<thead>
<tr>
<th>id</th>
<th>status</th>
<th>started</th>
<th>finished</th>
<th># of seeds</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="job in jobs">
<td><a href="/jobs/{{job.id}}">{{job.id}}</a></td>
<td>{{job.status}}</td>
<td>{{job.started}}</td>
<td>{{job.finished}}</td>
<td>{{job.conf.seeds.length}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>