{% extends "base.html" %} {% block title %}Search - {{ brand_name }}{% endblock %} {% block content %}
{% if results %}

{% if query %}Showing{% else %}Recent emails:{% endif %} {{ start_idx + 1 }}–{{ start_idx + results|length }}{% if has_more %}+{% endif %}{% if query %} (took {{ "%.2f"|format(search_time) }}s){% endif %}

{% if has_prev or has_more %}
{% if has_prev %} « Previous {% endif %} Page {{ page }} {% if has_more %} Next » {% endif %}
{% endif %}
{% endif %}
{% if search_error %}
Search error: {{ search_error }}

Try quoting phrases with special characters, e.g., "tpc-ds"

{% elif results %} {% if has_prev or has_more %}
{% if has_prev %} « Previous {% endif %} Page {{ page }} {% if has_more %} Next » {% endif %}
{% endif %} {% elif query %}
No results found for "{{ query }}"
{% endif %} {% endblock %}