{% extends "django_program/manage/base.html" %} {% block title %}Speakers{% endblock %} {% block page_title %}

Speakers

Speaker profiles synced from Pretalx

{% endblock %} {% block content %}
Speaker data is synced from Pretalx and is read-only.
{% if search_query %} Clear {% endif %}
{% if speakers %} {% for speaker in speakers %} {% endfor %}
Name Email Talks Synced
{{ speaker.name }} {% if speaker.email %}{{ speaker.email }}{% else %}—{% endif %} {{ speaker.talk_count }} {% if speaker.synced_at %} {{ speaker.synced_at|date:"N j, Y" }} {% else %} — {% endif %}
{% include "django_program/manage/_pagination.html" %} {% else %}

{% if search_query %}No speakers match your search.{% else %}No speakers synced for this conference.{% endif %}

{% endif %} {% endblock %}