{% extends 'cfp/staff/base.html' %} {% load bootstrap3 i18n %} {% block talkstab %} class="active"{% endblock %} {% block content %}

{{ talk.title }}

{% trans "Edit" %}

{% trans "Information" %}

{% trans "Category" %}
{{ talk.category }}
{% trans "Status" %}
{{ talk.get_status_str }}
{% trans "Track" %}
{% if talk.track %} {{ talk.track }} {% else %} {% trans "not defined" context "session" %} {% endif %}
{% trans "Tags" %}
{% if talk.tags.exists %}{{ talk.get_tags_html }}{% else %}{% trans "none" context "tag" %}{% endif %}
{% trans "Timeslot" %}
{% if talk.start_date %} {{ talk.start_date|date:"l d b" }}, {{ talk.start_date|date:"H:i" }} – {% if talk.end_date %}{{ talk.end_date|date:"H:i" }}{% else %}?{% endif %} {% else %}{% trans "not defined" %} {% endif %}
{% trans "Room" %}
{% if talk.room %} {{ talk.room }} {% else %}{% trans "not defined" %} {% endif %}
{% comment %} {% if talk.registration_required %}
{% trans "Registrations" %}
{% if talk.attendees_limit %}{{ talk.attendees.count }} / {{ talk.attendees_limit }}{% else %}{% trans "required but unlimited" %}{% endif %}
{% endif % {% endcomment %} {% if talk.materials %}
{% trans "Materials" %}
{{ talk.materials_name }}
{% endif %} {% if talk.video %}
{% trans "Video" %}
{% trans "download" %}
{% endif %}

{% trans "Description" %}

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

{% trans "Speakers" %}

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

{% trans "Notes" %}

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

{% if talk.accepted == None %}

{% trans "Vote" %}

-2 -1 0 +1 +2

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

{% trans "Accept" %} {% trans "Decline" %} {% elif talk.accepted == True and talk.confirmed == None %}

{% trans "Speaker confirmation" %}

{% trans "The speaker confirmed" %} {% trans "The speaker cancelled" %} {% endif %} {% comment %} {% if talk.registration_required %}

{% trans "Attendees" %}

{% for attendee in talk.attendees.all %} {% if forloop.first %}
    {% endif %}
  1. {{ attendee.get_name }}
  2. {% if forloop.last %}
{% endif %} {% empty %} {% trans "No attendees yet." %} {% endfor %} {% endif %} {% endcomment %}

{% trans "Messaging" %}

{% include 'mailing/_message_list.html' with messages=talk.conversation.message_set.all %} {% trans "Comment this talk – this message will be received by the staff team only" as message_form_title %} {% include 'mailing/_message_form.html' %} {% endblock %}