BGP-Ranking/website/web/templates/index.html

30 lines
934 B
HTML
Raw Normal View History

{% 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>
</center>
2018-06-01 17:13:56 +02:00
{% include ['top_forms.html'] %}
<table class="table">
<tr>
<th>ASN</th>
<th>Rank</th>
2018-04-13 18:02:44 +02:00
<th>Description</th>
</tr>
2018-04-13 18:02:44 +02:00
{% for (asn, rank), description in ranks %}
<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>
</tr>
{% endfor %}
</table>
{% endblock %}