{% extends parent %} {% block title %}Search - Introspect{% endblock %} {% block content %}

Search

{% if fts_loaded %} FTS Full-text search (BM25) active {% else %} FTS Full-text search unavailable — using ILIKE fallback {% endif %}

{% if query %}

{{ results|length }}{% if has_next %}+{% endif %} result(s) for "{{ query }}"{% if page > 1 %} (page {{ page }}){% endif %}

{% endif %} {% if results %}
{% for r in results %} {% endfor %}
Project Branch Title Date Duration Model Role Snippet Score
{{ r.project }} {{ r.branch }} {{ r.title or '(no title)' }} {{ r.date }} {{ r.duration }} {{ r.model }} {{ r.role }} {{ r.snippet }} {{ '%.4f'|format(r.score) if r.score is not none else '' }}
{% elif query %}

No results found.

{% endif %} {% endblock %}