{% extends "base.html" %} {% set active = "transcriptions" %} {% block title %}Transcriptions — Communication DNA{% endblock %} {% block content %}
| 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) }} |
No transcriptions yet. Ingest one!
{% endif %} {% endblock %}