{% extends "base.html" %} {% block title %}Dashboard — Transcribe Studio{% endblock %} {% block page_header %}

Dashboard

Overview of your classroom transcriptions

{% endblock %} {% block content %}
{{ stats.recording_count }} Recordings
{{ stats.segment_count }} Segments
{{ fmt_duration(stats.total_duration_ms) }} Audio total
{{ stats.transcript_pct }}% Transcribed
{{ stats.total_words }} Words typed
{{ stats.unique_speakers }} Speakers
Quick start

Upload audio → open a recording → drag segments on the wave → export as TXT or JSON when done.

Recordings progress

View all
{% if stats.recordings %}
{% for r in stats.recordings %}
{{ r.title }} {{ r.segment_count }} segments · {{ fmt_duration(r.duration_ms) }}
Transcript {{ r.transcript_pct }}%
Coverage {{ r.coverage_pct }}%
{% endfor %}
{% else %}

No recordings yet. Upload your first audio.

{% endif %}
{% endblock %}