{% import "entity_macros.html" as entity_macros %} {% import "search_macros.html" as search_macros %} {% extends "base.html" %} {% block title %} {% if query.q %} Search: {{ query.q }} {% else %} Release Search {% endif %} {% endblock %} {% block fullmain %}

Journal/Conference Search


Can also lookup by identifier or search releases.

{% if found %} {% if found.results %} {{ search_macros.top_results(query, found) }} {% for entity in found.results %} {{ entity_macros.container_search_result_row(entity) }} {% endfor %} {% if found.results|length > 8 %}
{{ search_macros.bottom_results(query, found, endpoint='container_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 %}