{% 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 %} {% trans_text 'Domaine' 'Field' 'Bereich' %} {% trans_text 'Tous les domaines' 'All fields' 'Alle Bereiche' %} {% for area in research_areas %} {{ area|translate:'name' }} {% endfor %} {% trans_text 'Niveau' 'Level' 'Stufe' %} {% trans_text 'Tous les niveaux' 'All levels' 'Alle Stufen' %} Master {% trans_text 'Doctorat' 'PhD' 'Doktorat' %} {% trans_text 'Post-doctorat' 'Post-doc' 'Post-Doktorat' %} {% trans_text 'Statut' 'Status' 'Status' %} {% trans_text 'Tous les statuts' 'All statuses' 'Alle Status' %} {% trans_text 'En cours' 'Active' 'Laufend' %} {% trans_text 'Terminé' 'Completed' 'Abgeschlossen' %} {% trans_text 'Proposé' 'Proposed' 'Vorgeschlagen' %} {% for project in projects %} {% if project.image %} {% else %} {% endif %} {% if project.research_area %} {{ project.research_area|translate:'name' }} {% endif %} {{ project.get_level_display }} {{ project|translate:'title' }} {{ project|translate:'short_description'|default:project|translate:'description'|truncatewords:20 }} {% for keyword in project.keywords.all|slice:":3" %} {{ keyword.keyword }} {% endfor %} {% empty %} {% trans_text 'Aucun projet de recherche disponible pour le moment.' 'No research project available at the moment.' 'Derzeit kein Forschungsprojekt verfügbar.' %} {% endfor %} {% 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 %} {% trans_text 'Voir toutes les publications' 'View all publications' 'Alle Publikationen anzeigen' %} → {% endif %} {% endblock %}
{{ project|translate:'short_description'|default:project|translate:'description'|truncatewords:20 }}
{{ pub.venue }} - {{ pub.publication_date|date:"Y" }}