new: Add links to ASN and detailled ASN view from the ASN History page

pull/12/head
Raphaël Vinot 2019-04-30 11:58:37 +02:00
parent 8caad2d8e5
commit aa0d4581a8
1 changed files with 2 additions and 2 deletions

View File

@ -35,13 +35,13 @@
<tr>
<td>{{ entry['first_seen'] }}</td>
<td>{{ entry['last_seen'] }}</td>
<td>{{ entry['asn'] }}</td>
<td><a href="{{ url_for('asn_details', asn=entry['asn']) }}">{{ entry['asn'] }}</td>
<td>
{% for asn_description in entry['asn_descriptions'] %}
{{ asn_description }} </br>
{% endfor %}
</td>
<td>{{ entry['prefix'] }}</td>
<td><a href="{{ url_for('asn_details', asn=entry['asn'], prefix=entry['prefix']) }}">{{ entry['prefix'] }}</td>
</tr>
{% endfor %}
</table>