{% extends "papers.html" %} {% block list %} {% for group in papers|groupby('paper_type') %}

{{ group.grouper|default("other") }}

{% for paper in group.list %}

Authors: {% for author in paper.ordered_authors() %} {{ author.short() }}{% if not loop.last %}, {% endif %}{% endfor %}
Title: {{ paper.title }}
Journal: {{ paper.journal }}
Year: {{ paper.year }}
Is open access provided to this publication? no
Does this publication acknowledge the ERC funding? yes

{% endfor %} {% endfor %} {% endblock %}