{% extends "base.html" %} {% block content %} There are a total of {{ total_number }} patents.

{% for i in range(0, year_data|length) %} {% if i % 2 %} {{ year_data[i] }}
{% else %} {{ year_data[i] }}: {% endif %} {% endfor %}
{% for i in range(0, country_data|length) %} {% if i % 2 %} {{ country_data[i] }}
{% else %} {{ country_data[i].name }} {{ country_data[i].flag }}: {% endif %} {% endfor %}
{% endblock %}