{% extends "apis_data_explorer/base.html" %} {% block main_class %}{% endblock %} {% block content %}
{% if selected_entity_type %} {% endif %}
{% if query %}

{{ page_obj.paginator.count }} result{{ page_obj.paginator.count|pluralize }} for “{{ query }}” {% if selected_entity_type %} in {{ selected_entity_type }}{% endif %}

{% for result in results %} {% include "partials/search_result_card.html" with result=result only %} {% empty %}

No results found.

{% endfor %}
{% if page_obj.paginator.num_pages > 1 %} {% endif %} {% else %}

Enter a term to search labels and indexed text.

{% endif %}
{% endblock %}