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 %}
|
|
|
|
|
|
|
|
|
2018-07-31 18:39:19 +02:00
|
|
|
{% block title %}Ranking - {{ ' '.join(country) }}{% endblock %}
|
2018-07-27 14:33:25 +02:00
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
2018-07-31 18:39:19 +02:00
|
|
|
<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>
|
2018-07-31 18:39:19 +02:00
|
|
|
<h1>Ranking - {{ ' '.join(country) }}</h1></br></br>
|
2018-07-27 14:33:25 +02:00
|
|
|
</center>
|
|
|
|
{% include ['top_forms.html'] %}
|
2018-08-01 11:29:03 +02:00
|
|
|
<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 %}
|