{% extends "base.html" %} {% block content %} {{ text|safe }}
{% 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 %} {% endblock %}