{% extends "base.html" %} {% block title %}Search - PyST{% endblock %} {% block page_header %}

Search Results

Found {{ results|length }} results for "{{ query }}"

Press Esc to clear search
{% endblock %} {% block content %}
{% if query %}
{% if results %}
{% for result in results %}
{% if result.highlight %} {% set highlight_text = result.highlight | striptags %} {% if highlight_text != result.label %}

{{ result.highlight | safe }}

{% endif %} {% endif %}
Loading concept details...
{% endfor %}
{% else %}

No results found

We couldn't find any concepts matching "{{ query }}". Try adjusting your search terms or try a different query.

{% endif %}
{% else %}

Start searching

Enter a search term above to find concepts in the taxonomy. You can use semantic search to find related concepts.

{% endif %}
{% endblock %}