2018-04-11 14:55:20 +02:00
|
|
|
{% extends "main.html" %}
|
|
|
|
|
|
|
|
{% block title %}BGP Ranking{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<center>
|
|
|
|
<h1>BGP Ranking</h1></br></br>
|
2018-08-03 18:04:35 +02:00
|
|
|
<button data-html="true" type="button" class="btn btn-secondary" data-container="body"
|
|
|
|
data-toggle="popover" data-placement="bottom"
|
|
|
|
data-content="<center><b>sum</b>(IP * weight of the list) </br><hr><b>sum</b>(IP announced by the ASN)</center>">
|
|
|
|
<h4>How is this ranking computed?</h4>
|
|
|
|
</button>
|
2018-04-11 14:55:20 +02:00
|
|
|
</center>
|
2018-06-01 17:13:56 +02:00
|
|
|
{% include ['top_forms.html'] %}
|
2018-04-11 14:55:20 +02:00
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>ASN</th>
|
|
|
|
<th>Rank</th>
|
2018-04-13 18:02:44 +02:00
|
|
|
<th>Description</th>
|
2018-04-11 14:55:20 +02:00
|
|
|
</tr>
|
2018-04-13 18:02:44 +02:00
|
|
|
{% for (asn, rank), description in ranks %}
|
2018-04-11 14:55:20 +02:00
|
|
|
<tr>
|
2018-04-11 15:55:46 +02:00
|
|
|
<td><a href="{{ url_for('asn_details', asn=asn) }}">{{ asn }}</a></td>
|
2018-04-11 15:31:34 +02:00
|
|
|
<td>{{ rank }}</td>
|
2018-04-13 18:02:44 +02:00
|
|
|
<td>{{ description }}</td>
|
2018-04-11 14:55:20 +02:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|