{% extends 'base.html' %} {% load traduction_tags %} {% block title %}{% trans_text 'Recherche' 'Research' 'Forschung' %} - {{ settings.site_name }}{% endblock %} {% block content %} {% trans_text 'Recherche' 'Research' 'Forschung' as tr_page_title %} {% trans_text 'Projets et publications scientifiques' 'Projects and scientific publications' 'Projekte und wissenschaftliche Publikationen' as tr_page_subtitle %} {% include 'components/breadcrumb.html' with page_title=tr_page_title page_subtitle=tr_page_subtitle %}
{% if publications %}

{% trans_text 'Publications Récentes' 'Recent Publications' 'Aktuelle Publikationen' %}

{% for pub in publications %}
{{ pub.get_publication_type_display }}

{{ pub|translate:'title' }}

{{ pub.venue }} - {{ pub.publication_date|date:"Y" }}

{% if pub.pdf_url or pub.external_url %} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}