OpenSlides/openslides/agenda/templates/projector/agenda_list_of_speaker.html

34 lines
940 B
HTML
Raw Normal View History

{% extends 'base-projector.html' %}
2013-03-18 12:34:47 +01:00
{% load i18n %}
{% load tags %}
2013-03-18 12:34:47 +01:00
{% block title %}{{ block.super }} {{ item }}{% endblock %}
2013-03-18 12:34:47 +01:00
{% block content %}
<h1>{{ title }}</h1>
<h2 style="margin-top: -10px;">
{% trans 'List of speakers' %}
{% if item.speaker_list_closed %}(<span class="closed">{% trans 'closed' %}</span>){% endif %}
</h2>
2013-03-18 12:34:47 +01:00
{% endblock %}
{% block scrollcontent %}
<p>
{% if list_of_speakers %}
<ul id="list_of_speakers">
{% for speaker_dict in list_of_speakers %}
<li class="{{speaker_dict.type}}"> {#o ld_speaker, actual_speaker, coming_speaker #}
{% if speaker_dict.type == 'coming_speaker' %}
{{ speaker_dict.prefix }}.
{% endif %}
{{ speaker_dict.speaker }}
</li>
2013-03-18 12:34:47 +01:00
{% endfor %}
</ul>
2013-03-18 12:34:47 +01:00
{% else %}
<i>{% trans 'The list of speakers is empty.' %}</i>
2013-03-18 12:34:47 +01:00
{% endif %}
</p>
2013-03-18 12:34:47 +01:00
{% endblock %}