{% extends "base-projector.html" %} {% load i18n %} {% block title %}{{ block.super }} - {{ item }}{% endblock %} {% block content %}

{{ title }}

{% trans 'List of speakers' %}

{% endblock %} {% block scrollcontent %} {% if old_speakers|length > 0 %} {% endif %} {% if speakers %}
    {% for speaker in speakers %}
  1. {{ speaker }}
  2. {% endfor %}
{% else %}

{% trans 'The list of speakers is empty.' %}

{% endif %} {% endblock %}