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

19 lines
342 B
HTML
Raw Normal View History

2018-07-31 10:57:06 +02:00
<table class="table">
<tr>
{% for date in to_display[0] %}
<td>{{ date }}</td>
{% endfor %}
</tr>
{% for line in to_display[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>