{% extends "symposion/schedule/public_base.html" %} {% load pyconau2017_tags %} {% load sitetree %} {% load staticfiles %} {% load thumbnail %} {% block head_title %}Presentation: {{ presentation.title }}{% endblock %} {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} {% block header_inset_image %}{% with audience=presentation.proposal.get_target_audience_display %}{% if audience == "Business" %}{% illustration "falls.svg" %}{% elif audience == "Community" %}{% illustration "bridge.svg" %}{% elif audience == "Developer"%}{% illustration "hobart.svg" %}{% elif audience == "User" %}{% illustration "antarctica.svg" %}{% else %}{% illustration "casino.svg" %}{% endif %}{% endwith %}{% endblock %} {% block header_background_image %}{% presentation_bg_number presentation 4 as bg_number %}{% if bg_number == 0 %}{% static "pyconau2017/images/mt_anne_bg_optimised.jpg" %}{% elif bg_number == 1 %}{% static "pyconau2017/images/the_neck_bg_optimised.jpg" %}{% elif bg_number == 2 %}{% static "pyconau2017/images/snug_falls_bg_optimised.jpg" %}{% elif bg_number == 3 %}{% static "pyconau2017/images/sleepy_bay_bg_optimised.jpg" %}{% endif %}{% endblock %} {% block header_title %}{{ presentation.title }}{% endblock %} {% block header_paragraph %}

Presented by {% for speaker in presentation.speakers %} {{ speaker }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% if presentation.slot %} {{ presentation.slot.day.date|date:"l" }} {{ presentation.slot.start}}–{{ presentation.slot.end }}
{% endif %} {% if presentation.proposal.get_target_audience_display %} Target audience: {{ presentation.proposal.get_target_audience_display }} {% endif %} {% endblock %} {% block content %} {% if presentation.unpublish %}

Presentation not published.

{% endif %}

Abstract

{{ presentation.abstract_html|safe }}

Presented by

{% for speaker in presentation.speakers %} {% speaker_photo speaker 512 as speaker_photo_url %} {% include "_right_floating_image.html" with image_url=speaker_photo_url %}

{{ speaker }}

{% if speaker.homepage or speaker.twitter_username %}

{% if speaker.homepage %} {% include "cms_pages/home_page_blocks/btn_generic_link.html" %} {% endif %} {% if speaker.twitter_username %} {% include "cms_pages/home_page_blocks/btn_twitter.html" %} {% endif %}

{% endif %} {{ speaker.biography_html|safe}} {% endfor %} {% endblock %}