{% extends 'contents/_base/events.html' %} {% load i18n staticfiles %} {% block title %}{{ object.title }}{% endblock title %} {% block page_title %}

{{ object.title }}

{% endblock page_title %} {% block content_page_class %}{{ block.super }} talk-detail-content{% endblock content_page_class %} {% block content %}

{% trans 'Language' %}

{{ object.get_language_display }}

{% trans 'Category' %}

{{ object.get_category_display }}

{% trans 'Python Level' %}

{{ object.get_python_level_display }}
{% if object.slide_link %}

{% trans 'Slides Link' %}

{{ object.slide_link }}
{% endif %}

{% trans 'Abstract' %}

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

{% trans 'Description' %}

{{ object.detailed_description }}
{% endif %}
{% with user=object.host %}

{{ user.speaker_name }} {% if user.github_id %} {% endif %} {% if user.twitter_id %} {% endif %} {% if user.facebook_profile_url %} {% endif %}

{% if user.photo %}
{{ user.bio|linebreaks }}
{% else %}
{{ user.bio|linebreaks }}
{% endif %}
{% endwith %}
{% endblock content %} {% block extra_js %} {{ block.super }} {% endblock extra_js %}