{% extends 'speeches/base_player.html' %} {% load url from future %} {% load i18n %} {% block title %}{% trans "Speeches" %}{% endblock %} {% block content %}

{% trans 'Unattached speeches' %}

    {% if not speech_list %}
  1. {% trans 'There are no unattached speeches.' %}
  2. {% endif %} {% for speech in speech_list %} {% include "speeches/speech.html" with speech=speech nosection="1" %} {% endfor %}
{% endblock %}