{% extends "wafer/base.html" %} {% load i18n %} {% block title %}{% trans "Speakers" %} - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% block content %} {% for talk_type, type_rows in speaker_rows.items %} {% if talk_type is None %} {% trans 'Speakers' %} {% else %} {% blocktrans %}{{ talk_type }} Speakers{% endblocktrans %} {% endif %} {% if talk_type is None %} {% else %} {% endif %} {% for row in type_rows %} {% for user_profile in row %} {{ user_profile.display_name }} {% endfor %} {% endfor %} {% endfor %} {% endblock %}