{% extends "base.html" %} {% block content %}
sort by:
{% if results == 'no results found' %} {{ results }} {% else %} {% for result in results %} Application ID: {{ result['application_id'] }}

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

EPO publication: {{ result['epo_publication_url'] }}

IPC publication: {{ result['ipc_publication_url'] }}

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

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

{% endif %}
{% endfor %} {% endif %} {% endblock %}