{% if query == "" %}
Type to search this topic.
{% else %} {% if warnings %}
Search warnings
{% for w in warnings %}
{{ w }}
{% endfor %}
{% endif %} {% if results %}
{{ results|length }} result{% if results|length != 1 %}s{% endif %}
{% for r in results %}
#{{ r.seq }} · {{ r.sender }}{% if r.message_type != 'message' %} · {{ r.message_type|upper }}{% endif %}
{{ r.snippet }}
{% if r.semantic_score is defined and r.semantic_score is not none %}
{{ "%.3f"|format(r.semantic_score) }}
{% endif %}
{% endfor %}
{% else %}
No results.
{% endif %} {% endif %}