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

25 lines
652 B
HTML

{% extends "main.html" %}
{% block head %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='linegraph_country.css') }}">
{% endblock %}
{% block title %}Ranking - {{ ' '.join(country) }}{% endblock %}
{% block scripts %}
{{ super() }}
<script src='{{ url_for('static', filename='linegraph_country.js') }}'></script>
<script>linegraph('/country_history');</script>
{% endblock %}
{% block content %}
<center>
<h1>Ranking - {{ ' '.join(country) }}</h1></br></br>
</center>
{% include ['top_forms.html'] %}
<svg width="1024" height="800"></svg>
<div id="asn_details"></div>
{% endblock %}