{% extends 'contents/_base.html' %} {% load i18n static %} {% load events %} {% block title %}{{ object.title }}{% endblock %} {% block body_class %}{{ block.super }} talk-detail{% endblock body_class %} {% block content %}

{{ object.title }}

{% trans 'Abstract' %}

{{ object.abstract|linebreaks }}
{% if object.detailed_description %}

{% trans 'Description' %}

{{ object.detailed_description }}
{% endif %} {% if object.slide_link %}

{% trans 'Slides' %}

{{ object.slide_link }}

{% endif %}

{% if object.speaker_count > 1 %} {% trans 'Speakers' context 'speaker info in talk detail' %} {% else %} {% trans 'Speaker' context 'speaker info in talk detail' %} {% endif %}

{% for info in object.speakers %} {% with user=info.user %}
{{ user.speaker_name }}
{{ user.bio|linebreaks }} {% if user.github_id or user.twitter_id or user.facebook_profile_url %} {% endif %}
{% endwith %} {% endfor %} {% if object.slido_embed_link %} {% endif %} {% endblock content %} {% block extra_js %} {{ block.super }} {% endblock extra_js %}