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

50 lines
1.4 KiB
HTML
Raw Normal View History

{% extends 'base-projector.html' %}
2013-03-18 12:34:47 +01:00
{% load i18n %}
{% block title %}{{ block.super }} {{ item }}{% endblock %}
2013-03-18 12:34:47 +01:00
{% block header %}
<style type="text/css">
/* List of speakers projector slide */
ul#list_of_speakers {
list-style-type: none;
padding: 0}
#list_of_speakers li {
font-size: 130%;
line-height: 150%}
#list_of_speakers .old_speaker {
color: #9FA9B7}
#list_of_speakers .actual_speaker {
font-weight: bold;
margin-bottom: 0.5em}
</style>
{% 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 }}"> {# old_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 %}