{% extends "apis_data_explorer/base.html" %} {% load search_tags %} {% block main_class %}{% endblock %} {% block content %}
{% if page_obj %}

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

{% 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 %}
{% endblock %}