{% extends "base.html" %} {% block content %}

a timeline of inventions

{{ num_found }} patents found out of {{ total_number }}

showing {{ page_range }} results of {{ num_found }} found{% if query is not none %} for query '{{ query }}'{% endif %}

{% for page_number in pagination %} {{ page_number }} {% endfor %}
sort by:
filter by country:
filter by year:
{% if results == 'no results found' %} {{ results }} {% else %} {% for result in results %}

Year: {{ result['year'] }}

{% if result['title'] is defined %}

Title: {{ result['title'] }}

{% endif %} {% if result['country'] is defined %}

Country: {% if result['country'].name is defined %} {{ result['country'].name }} {{ result['country'].flag }} {% else %} {{ result['country'] }} {% endif %}

{% endif %} {% if result['abstract'] is defined %}

Abstract: {{ result['abstract'] }}

{% endif %} {% endfor %} {% endif %} {% if search is defined %} {% endif %} {% endblock %}