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

{% block title %}{{ _('Search results for "%(query)s"', query=query)}}{% endblock %}

{% if partitions|length != 0 %}

{{ _("Results in current database") }}

{% for partition in partitions %}
{{ partition["name"] }}
{{ partition["author"] }}
{% if partition["has_attachment"] %}
📎
{% endif %}
{% endfor %}
{% endif %} {% if google_results|length != 0 %}

{{ _("Online search results") }}

{% for partition in google_results %}
{{ partition["name"] }}
{% endfor %}
{% endif %} {% if google_results|length == 0 and partitions|length == 0 %} {{ _("No results available. Try to tweak your query or increase the amount of online searches.") }} {% endif %} {% endblock %}