{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Search Results" %}{% endblock %} {% block content %}

{% trans "Search Results" %}

{% if query %}

{% trans "Search results for" %}: "{{ query }}"

{% trans "Found" %} {{ result_count }} {% trans "results" %}

{% endif %} {% if results.publications %}

{% trans "Publications" %} ({{ results.publications|length }})

{% for pub in results.publications %}

{{ pub.title }}

{{ pub.authors }}

{{ pub.journal }}, {{ pub.year }}

{% if pub.abstract %}

{{ pub.abstract|truncatewords:50 }}

{% endif %}
{% endfor %}
{% endif %} {% if results.projects %}

{% trans "Projects" %} ({{ results.projects|length }})

{% for project in results.projects %}

{{ project.title }}

{{ project.get_project_type_display }}

{{ project.description|truncatewords:30 }}

{% endfor %}
{% endif %} {% if results.conferences %}

{% trans "Conferences" %} ({{ results.conferences|length }})

{% for conf in results.conferences %}

{{ conf.title }}

{{ conf.location }}, {{ conf.date|date:"Y" }}

{% if conf.paper_title %}

{% trans "Paper" %}: {{ conf.paper_title }}

{% endif %}
{% endfor %}
{% endif %} {% if not results.publications and not results.projects and not results.conferences %}

{% trans "No results found for your search." %}

{% trans "Try different keywords or check spelling." %}

{% endif %}
{% endblock %}