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

{{ talk.title }}

{% if edit_perm %} edit
{% endif %}

{{ talk.get_event_display }}

{% trans "Description:" %}

{{ talk.description }}

{% trans "Speakers:" %}

{% trans "Topics:" %}

{% if moderate_perm %}

{% trans "Moderation" %}

{% trans "Vote:" %}

-2 -1 0 +1 +2
{% trans "Sum:" %} {{ talk.score }}

{% trans "Status:" %}

{{ talk.accepted|yesno:"✔,✘,?" }}

{% trans "Messages:" %}

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