{% extends "wafer/base.html" %} {% load i18n %} {% block content %}

{{ object.title }} {% if can_edit %} {% trans 'Edit' %} {% endif %}

{% blocktrans count counter=object.authors.count %} Speaker: {% plural %} Speakers: {% endblocktrans %} {% for author in object.authors.all %} {{ author.userprofile.display_name }} {% endfor %}

Type: {{ object.talk_type.name|default:'Talk' }}

{% if user.is_staff %}

{% trans 'Status:' %} {% if object.pending %} {% trans 'Under consideration' %} {% elif object.accepted %} {% trans 'Accepted' %} {% else %} {% trans 'Not accepted' %} {% endif %}

{% endif %}
{{ object.abstract.rendered|safe }}
{% if perms.edit_private_notes and object.private_notes %}

Private notes

(The following is not visible to submitters or attendees.)

{{ object.private_notes|urlize|linebreaks }}
{% endif %} {% if talk.talkurl_set.all %}
{% trans "URLS" %}
{% endif %}
{% endblock %}