{% extends "meeting-base.html" %} {% load staticfiles %} {% block headtitle %}{{ person }}{% endblock %} {% block content %}
{{ person }}
{% if person.institution %}
{{ person.institution }}
{% endif %} {% if person.bio %}
BIO
{{ person.bio|safe }}
{% endif %} {% if chaired_sessions %}
Sessions Speaking
{% for session in chaired_sessions %} {% include "public/meeting_information/programme/partials/session.html" %} {% endfor %}
{% endif %} {% if speaker_presentations %}
Speaker
{% for presentation in speaker_presentations %} {% include "public/meeting_information/programme/partials/presentation.html" with show_session=True%} {% endfor %}
{% endif %} {% if posters %}
Posters
{% for poster in posters %}
{{ poster }}
{{ poster.get_poster_type_display }} Poster
{% endfor %}
{% endif %}
{% endblock %}