You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1012 B

{% extends "base.html" %}
{% 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 %}
<tr class="{% if crawl.endTime%}success{%else%}warning{%endif%}">
<td><a href="/map/{{crawl.id}}/">Crawl {{crawl.id}}</a></td>
<td>{{crawl.startTime|date:"d.m.Y H:i:s"}}</td>
<td>{{crawl.endTime|date:"d.m.Y H:i:s"}}</td>
<td><span class="label label-primary tooltipme" title="# AS in crawl">{{crawl.countAS}}</span> / <span class="label label-success tooltipme" title="# AS online in craw">{{crawl.countASOnline}}</span> / <span class="label label-danger tooltipme" title="# AS offline in crawl">{{crawl.countASOffline }}</span></td>
<td><span class="label label-primary">{{crawl.countPeerings}}</span></td>
</tr>
{% endfor %}
</tbody>
</table>
<script type='text/javascript'>
$('.tooltipme').tipsy({gravity: 's'});
</script>
{% endblock %}