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

25 lines
652 B
HTML
Raw Normal View History

2018-07-27 14:33:25 +02:00
{% extends "main.html" %}
{% block head %}
{{ super() }}
2018-08-01 12:16:02 +02:00
<link rel="stylesheet" href="{{ url_for('static', filename='linegraph_country.css') }}">
2018-07-27 14:33:25 +02:00
{% endblock %}
{% block title %}Ranking - {{ ' '.join(country) }}{% endblock %}
2018-07-27 14:33:25 +02:00
{% block scripts %}
{{ super() }}
<script src='{{ url_for('static', filename='linegraph_country.js') }}'></script>
2018-07-27 14:33:25 +02:00
<script>linegraph('/country_history');</script>
{% endblock %}
{% block content %}
<center>
<h1>Ranking - {{ ' '.join(country) }}</h1></br></br>
2018-07-27 14:33:25 +02:00
</center>
{% include ['top_forms.html'] %}
<svg width="1024" height="800"></svg>
2018-07-31 10:54:38 +02:00
<div id="asn_details"></div>
2018-07-27 14:33:25 +02:00
{% endblock %}