|
|
|
@ -2,8 +2,27 @@
@@ -2,8 +2,27 @@
|
|
|
|
|
{% block body %} |
|
|
|
|
<h3>Crawl results</h3> |
|
|
|
|
|
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th>#</th> |
|
|
|
|
<th>start time</th> |
|
|
|
|
<th>end time</th> |
|
|
|
|
<th># AS</th> |
|
|
|
|
<th># Peerings</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
{% for crawl in crawls %} |
|
|
|
|
<a href="/map/{{crawl.id}}/">Crawl {{crawl.id}} from {{crawl.startTime}}</a><br /> |
|
|
|
|
<tr class="{% if crawl.endTime%}success{%else%}warning{%endif%}"> |
|
|
|
|
<td><a href="/map/{{crawl.id}}/">Crawl {{crawl.id}}</a></td> |
|
|
|
|
<td>{{crawl.startTime}}</td> |
|
|
|
|
<td>{{crawl.endTime}}</td> |
|
|
|
|
<td><span class="label label-primary">{{crawl.countAS}}</span> / <span class="label label-success">{{crawl.countASOnline}}</span> / <span class="label label-danger">{{crawl.countASOffline }}</span></td> |
|
|
|
|
<td><span class="label label-primary">{{crawl.countPeerings}}</span></td> |
|
|
|
|
</tr> |
|
|
|
|
{% endfor %} |
|
|
|
|
</tbody> |
|
|
|
|
</table> |
|
|
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|