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

18 lines
410 B
HTML

{% for to_display_country in to_display%}
<table class="table">
<tr>
{% for date in to_display_country[0] %}
<td>{{ date }}</td>
{% endfor %}
</tr>
{% for line in to_display_country[1:] %}
<tr>
<td><a href="{{ url_for('asn_details', asn=line[0]) }}">{{ line[0] }}</a></td>
{% for rank in line[1:] %}
<td>{{ rank }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
{% endfor %}