{% extends "base.html" %} {% block head %} {{ block.super }} {% endblock %} {% block content %} {% if publications %} {% for type in types %}

{{ type.description }}{% if forloop.first %} by {{ author }}{% endif %}


{% for publication in type.publications %} {% include "publications/publication.html" %} {% endfor %} {% endfor %} {% else %} No publications found for {{ author }}. {% endif %} {% endblock %}