{% set container = entity %} {% set entity_view = "search" %} {% set entity_type = "container" %} {% import "entity_macros.html" as entity_macros %} {% import "search_macros.html" as search_macros %} {% extends "entity_base.html" %} {% block entity_main %}

Search inside Container


Can also search all releases.

{% if found %} {% if found.results %} {{ search_macros.top_results(query, found) }} {% for paper in found.results %} {{ entity_macros.release_search_result_row(paper) }} {% endfor %} {% if found.results|length > 8 %}
{{ search_macros.bottom_results(query, found, endpoint='release_search') }}
{% endif %} {% else %} Raw query was: {{ query.q }}
confused paper man

No results found!

You could try elsewhere:

{% endif %} {% elif es_error %} {{ search_macros.es_error_msg(es_error) }} {% endif %}
{% endblock %}