{% extends "base_generic.html" %} {% load static %} {% block nav-teaching %} {% endblock %} {% load static %} {% block content %} {% block small %}
{{ thesis_detail.title|safe }} {% if thesis_detail.pdf_file %} PDF {% endif %}
{% for type in thesis_detail.publication_type.all %}{% if forloop.first %} {{ type.name }}{% else %}, {{ type.name }}{% endif %}{% endfor %}
{% if thesis_detail.cover_image %}
Cover {% if thesis_detail.copyright %}
©{{thesis_detail.copyright}}
{% endif %}
{% else %}

{% endif %}

{{thesis_detail.abstract|safe|linebreaksbr}}



{% if thesis_detail.supervisor.all %}
{% with supervisor_list=thesis_detail.supervisor.all|dictsort:"status.order_index" %}
Supervisor contact

{% include "member_list.html" with l=3 m=4 s=6 show_former=0 height=150 member_list=supervisor_list %} {% endwith %}
{% endif %}
Group
{% if thesis_detail.group.all %} {% include "group_list.html" with group_list=thesis_detail.group.all %} {% endif %} {% if thesis_detail.project.all %}
Projects
{% include "project_list.html" with project_list=thesis_detail.project.all|dictsortreversed:"end_date" %} {% endif %} {% if thesis_detail.publication.all %}
Publications
{% include "publication_list.html" with publication_list=thesis_detail.publication.all %} {% endif %} {% endblock %} {% endblock %}