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>
|
|
|
|
</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 %}
|