2018-04-11 14:55:20 +02:00
|
|
|
{% extends "main.html" %}
|
|
|
|
|
|
|
|
{% block title %}BGP Ranking{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-01-09 16:48:45 +01:00
|
|
|
<a href="https://github.com/D4-project/BGP-Ranking">
|
|
|
|
<img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ url_for('static', filename='forkme_right_darkblue_121621.png') }}" alt="Fork me on GitHub">
|
|
|
|
</a>
|
2018-04-11 14:55:20 +02:00
|
|
|
<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>
|
2019-01-08 12:40:07 +01: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 %}
|