{% extends "base.html" %} {% set active = "speakers" %} {% block title %}Speakers — Communication DNA{% endblock %} {% block content %}

Speakers

{% if speakers %}
{% for s in speakers %}

{{ s.name }}

{{ sentiment_emoji(s.sentiment_avg) }}
{% for tag in s.tags %} {{ tag }} {% endfor %}
{{ s.t_count }} transcription{{ 's' if s.t_count != 1 }} · {{ "{:,}".format(s.total_words) }} words
{% endfor %}
{% else %}

No speakers found.

{% endif %} {% endblock %}