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

Transcriptions

{% if transcriptions %}
{% for t in transcriptions %} {% endfor %}
Title Date Context Speakers Words Sentiment
{{ t.title or 'Untitled' }} {{ t.date or '—' }} {{ t.context or '—' }} {{ t.speakers|join(', ') }} {{ "{:,}".format(t.word_count or 0) }} {{ sentiment_emoji(t.sentiment_avg) }} {{ "%.2f"|format(t.sentiment_avg) }}
{% else %}

No transcriptions yet. Ingest one!

{% endif %} {% endblock %}