{% for thesis in thesis_list %}
  • {% for author in thesis.author_new.all %} {% if forloop.first %} {{ mem.last_name }} {% endif %} {% endfor %}
    {{ thesis.title|safe}}
    {% for type in thesis.publication_type.all %}{% if forloop.first %} {{ type.name }}{% else %}, {{ type.name }}{% endif %}{% endfor %}
    {% for group in thesis.group.all %}{% if forloop.first %}Group: {{ group.name|capfirst }}{% else %}, {{ group.name }}{% endif %}{% endfor %}
    {% for author in thesis.author_new.all %}
    Author: {{ author.given_name }} {{ author.last_name }}
    {% endfor %} {% if thesis.author_manual %}
    Author: {{ thesis.author_manual }}
    {% endif %}
    {% if thesis.experimental %}{% endif %}{% if thesis.theory %}{% endif %}
  • {% endfor %}