{% extends "base.html" %} {% block style %} {% endblock %} {% set show_images = False %} {% block title %}Conference archive{% endblock %} {% block content %}
{% if show_images %}
{% for person, photo in left_photos %} {% endfor %}
{% for person, photo in right_photos %} {% endfor %}
{% endif %}

Conference archive

Speaker/conference frequency distribution

Distribution of speakers by conference count.

{% for conf_count, speaker_count in speaker_counts %}
{{ plural(conf_count, "conference") }}: {{ plural(speaker_count, "speaker") }}
{% endfor %}

Top speakers

{% endblock %}