{% extends "base_generic.html" %} {% load static %} {% block head %} {% endblock %} {% block nav-research %} {% endblock %} {% load static %} {% block content %} {% block small %}

{{ presentation_detail.title|safe }}

{% if presentation_detail.image %}
{% else %} {% if presentation_detail.image_url %}
{% endif %} {% endif %}
{% if presentation_detail.copyright %}
©{{presentation_detail.copyright}}
{% endif %} {% if presentation_detail.image_url %}
©{{presentation_detail.image_url}}
{% endif%}

{% if presentation_detail.event_title %} {% if presentation_detail.event_type %}
{{ presentation_detail.event_title }} | {{ presentation_detail.event_type }}
{% else %}
{{ presentation_detail.event_title }}
{% endif %} {% else %} {{ presentation_detail.event_type }} {% endif %} {% if presentation_detail.event_url %}
Link to conference: {{ presentation_detail.event_url }}
{% endif %} {% if presentation_detail.host_university%}
Hosted by: {{ presentation_detail.host_university }}{% if presentation_detail.host_department %}, {{ presentation_detail.host_department }}{% endif %}
{% elif presentation_detail.host_department %}
{% if not presentation_detail.host_university %}Hosted by: {{ presentation_detail.host_department }}{% endif %}
{% endif %} {% if presentation_detail.start_date %}
{% if presentation_detail.start_date < presentation_detail.end_date %} {% if presentation_detail.location is None %}
{{presentation_detail.start_date}} - {{presentation_detail.end_date}}
{% else %}
{{presentation_detail.start_date}} - {{presentation_detail.end_date}} | {{presentation_detail.location}}
{% endif %} {% else %} {% if presentation_detail.location is None %}
{{presentation_detail.start_date}}
{% else %}
{{presentation_detail.start_date}} | {{presentation_detail.location}}
{% endif %} {% endif %}
{% endif %} {% if presentation_detail.abstract %}

{% if presentation_detail.imageabstract %} {% if presentation_detail.imageabstract != presentation_detail.image%}
{% if presentation_detail.get_extension == ".mp4" %} {% else %} {% endif %}
{% if presentation_detail.copyright_imgabstr %}
©{{presentation_detail.copyright_imgabstr}}
{% endif %} {% endif %} {% endif %}

{{presentation_detail.abstract|safe|linebreaksbr}}

{% endif %} {% if presentation_detail.presenter.all %}

{% with member_list=presentation_detail.presenter.all|dictsort:"status.order_index" %}
Presenter
{% include "member_list.html" with l=3 m=4 s=6 height=150 member_list=member_list %} {% endwith %} {% endif %} {% if presentation_detail.author.all %}

{% with member_list=presentation_detail.author.all|dictsort:"status.order_index" %}
Authors
{% include "member_list.html" with l=3 m=4 s=6 height=150 member_list=member_list %} {% endwith %} {% endif %} {% if presentation_detail.group.all %}

Related groups
{% include "group_list.html" with group_list=presentation_detail.group.all %} {% endif %} {% if presentation_detail.project.all %}

Related projects
{% include "project_list.html" with l=3 m=4 s=6 project_list=presentation_detail.project.all|dictsortreversed:"end_date" %} {% endif %} {% if presentation_detail.publication.all %}

Related publications
{% include "publication_list.html" with l=3 m=4 s=6 publication_list=presentation_detail.publication.all %} {% endif %}
{% endblock %} {% endblock %}