{%extends "base/page.html"%} {%block title%}Search results{%endblock%} {%block contents%}
{%if search_error %}
{{search_error}}
{%else%} {%if hitcount == 0 %}

Your search for {{query}} returned no hits.

{%else%}

Results {{firsthit}}-{{lasthit}} of {%if hitcount == 1000%}more than 1000{%else%}{{hitcount}}{%endif%}.

{%if pagelinks %}Result pages: {{pagelinks|safe}}

{%endif%} {%for hit in hits %} {{forloop.counter0|add:firsthit}}. {{hit.subject}} [{{hit.rank|floatformat:2}}]
From {{hit.author}} on {{hit.date}}.
{{hit.abstract|safe}}
https://www.postgresql.org/message-id/{{hit.messageid}}

{%endfor%} {%if pagelinks %}Result pages: {{pagelinks|safe}}

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