{% extends "agenda/base.html" %} {% load i18n %} {% load rich_text %} {% load static %} {% load thumbnail %} {% block title %}{{ speaker.get_display_name }} ::{% endblock title %} {% block meta_title %}{{ speaker.get_display_name }}{% endblock meta_title %} {% block social_title %}{{ speaker.get_display_name }}{% endblock social_title %} {% block meta_image %} {% if speaker.avatar_url and request.event.cfp.request_avatar %} {% endif %} {% endblock meta_image %} {% block alternate_link %} {% endblock alternate_link %} {% block agenda_stylesheets %} {% endblock agenda_stylesheets %} {% block agenda_content %}

{{ speaker.get_display_name }} {% if request.event.current_schedule %} {% endif %}

{{ speaker.biography|rich_text }}
{% if show_sidebar %}
{% if show_avatar %} {% endif %} {% if short_answers or icon_answers %} {% if show_avatar %}
{% endif %}
{% if icon_answers %}
{% for answer in icon_answers %} {% include "common/answer_block.html" with answer=answer %} {% endfor %}
{% endif %} {% for answer in short_answers %}
{% include "common/answer_block.html" with answer=answer %}
{% endfor %}
{% endif %}
{% endif %}
{% if long_answers %}
{% for answer in long_answers %} {{ answer.question.question }} – {% include "common/question_answer.html" with answer=answer %} {% endfor %}
{% endif %}
{% if speaker.current_talk_slots %}

{% blocktranslate trimmed count count=speaker.current_talk_slots|length %} Session {% plural %} Sessions {% endblocktranslate %}

{% for session in speaker.current_talk_slots %} {% include "agenda/session_block.html" with show_date=True %} {% endfor %}
{% endif %}
{% endblock agenda_content %}