23 lines
504 B
HTML
23 lines
504 B
HTML
|
{% extends "main.html" %}
|
||
|
|
||
|
{% block head %}
|
||
|
{{ super() }}
|
||
|
{% endblock %}
|
||
|
|
||
|
|
||
|
{% block title %}Ranking - {{ country }}{% endblock %}
|
||
|
|
||
|
{% block scripts %}
|
||
|
{{ super() }}
|
||
|
<script src='{{ url_for('static', filename='linegraph.js') }}'></script>
|
||
|
<script>linegraph('/country_history');</script>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<center>
|
||
|
<h1>Ranking - {{country}}</h1></br></br>
|
||
|
</center>
|
||
|
{% include ['top_forms.html'] %}
|
||
|
<canvas width="1024" height="800"></canvas>
|
||
|
{% endblock %}
|