{% extends 'base.html' %} {% load i18n %} {% block talktab %} class="active"{% endblock %} {% block content %}

{{ talk.title }}

{% if edit_perm %} {% trans "Edit" %}
{% endif %}

{% trans "Format:" %}

{{ talk.event }}

{% trans "Abstract:" %}

{% if talk.abstract %}{{ talk.abstract }}{% else %}{% trans "No abstract provided." %}{% endif %}

{% trans "Description:" %}

{% if talk.description %}{{ talk.description|linebreaksbr }}{% else %}{% trans "No description provided." %}{% endif %}

{% trans "Speakers:" %}

{% for speaker in talk.speakers.all %} {% if forloop.first %}{% endif %} {% empty %} {% trans "No speakers." %} {% endfor %}

{% trans "Topics:" %}

{% for topic in talk.topics.all %} {% if forloop.first %}{% endif %} {% empty %} {% trans "No topics." %} {% endfor %} {% if moderate_perm %}

{% trans "Track:" %}

{% if talk.track %}

{{ talk.track }}

{% else %}

{% trans "No assigned yet." %}

{% for topic in talk.topics.distinct %} {% if forloop.first %}

{% endif %} {% if topic.track %} {% trans "Assign to" %} {{ topic.track }} {% endif %} {% if forloop.last %}

{% endif %} {% endfor %} {% endif %} {% endif %}

{% trans "Notes:" %}

{% if talk.notes %}{{ talk.notes|linebreaksbr }}{% else %}{% trans "No notes." %}{% endif %}

{% if moderate_perm %}

{% trans "Moderation" %}

{% trans "Vote:" %}

-2 -1 0 +1 +2


{{ talk.vote_set.all|length }} {% trans "vote" %}{{ talk.vote_set.all|length|pluralize }}, {% trans "average:" %} {{ talk.score|floatformat:1 }}

{% trans "Status:" %}

{{ talk.accepted|yesno:"Accepted,Declined,Pending decision" }}
{% if talk.accepted == None %} Accept Decline {% endif %}

{% trans "Messages:" %}

{% trans "These messages are for organization team only." %}

{% for message in talk.conversation.messages.all %} {% include 'conversations/_message_detail.html' %} {% endfor %} {% include 'conversations/_message_form.html' %} {% endif %} {% endblock %}