fix: Add forgotten template

pull/12/head
Raphaël Vinot 2018-07-31 10:57:06 +02:00
parent c42e9d1e18
commit 719f0270a0
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<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>