{% extends 'base.html' %} {% load static %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block title %} {% trans 'Search Results for your query about a research article' %} {% endblock %} {% block extra_head_tags %} {% endblock %} {% block header_class %}{% endblock %} {% block content %} {% if query %}

{% trans 'Search Results for' %} -- {{ query }} --

{% else %}

{% trans 'You need to fill in the search field to get a response! Go back and do so...' %}

{% endif %}
{% if page_obj %}

{% trans 'Go back' %}

{% for paper in page_obj %}
{% endfor %}

{% trans 'Go back' %}

{% else %}

{% trans 'No results found.' %} ({% trans 'Go back' %})

{% trans 'Make sure to search with the language used in the arXiv paper, i.e. use mostly English.' %}

{% trans 'You can also use field codes to search for a specific field: "au:" for authors, "ti:" for titles, "abs:" for abstracts, "co:" for comments, "jr:" for journal reference,"cat:" for category, and "id:" for ID.' %}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}