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

Dashboard

{{ stats.transcriptions }}
Transcriptions
{{ stats.speakers }}
Speakers
{{ stats.segments }}
Segments
{{ "{:,}".format(stats.total_words) }}
Total Words
{% if int_stats %}
{{ int_stats.linked_crm }}
CRM Linked
{{ int_stats.linked_kb }}
KB Linked
{% endif %}

Recent Transcriptions

{% if recent %} {% else %}

No transcriptions yet. Ingest one!

{% endif %}

Top Speakers by Word Count

{% if top_speakers %} {% else %}

No speakers yet.

{% endif %}
{% endblock %}