{% extends "base.html" %} {% load i18n %} {% load tags %} {% load staticfiles %} {% block title %}{{ block.super }} – {{ item }}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% endblock %} {% block content %}

{{ item }} {% trans "Back to overview" %} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.agenda.can_manage_agenda %}

{% if not item.related_sid %} {{ item.text|safe|linebreaks }} {% else %} {% trans item.get_related_type %} {{ item.get_related_slide }} {% endif %}

{% if perms.agenda.can_manage_agenda %} {% if item.comment %}

{% trans "Comment" %}

{{ item.comment|linebreaks }}

{% endif %} {% endif %} {# List of Speakers #}

{% trans "List of speakers" %} {% if item.speaker_list_closed %}{% trans 'closed' %}{% endif %}

{% if perms.agenda.can_manage_agenda %} {% if item.speaker_list_closed %} {% trans 'Open list' %} {% else %} {% trans 'Close list' %} {% endif %} {% endif %} {% if perms.projector.can_manage_projector %} {% trans 'Show list' %} {% endif %}

{% if perms.agenda.can_manage_agenda %} {% endif %}
{% for speaker_dict in list_of_speakers %} {% if speaker_dict.first_in_group %} {% if speaker_dict.type == 'old_speaker' %} {% trans "Last speakers" %}:
{% elif speaker_dict.type == 'actual_speaker' %} {% trans 'Current speaker' %}: {% else %} {% trans "Next speakers" %}: {% endif %} {% endif %} {% endfor %}

{% if is_on_the_list_of_speakers %} {% trans "Remove me from the list" %} {% elif not object.speaker_list_closed and perms.agenda.can_be_speaker %} {% trans "Put me on the list" %} {% endif %}

{% if perms.agenda.can_manage_agenda %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if perms.participant.can_see_participant and perms.participant.can_manage_participant %} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}