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

Dashboard

Your classroom transcription projects at a glance

{% endblock %} {% block content %}

Welcome back

Organize recordings by class or session. Open a project to upload audio, transcribe, and evaluate against LLM output.

+ New project
{{ totals.project_count }} Projects
{{ totals.recording_count }} Recordings
{{ fmt_duration(totals.total_duration_ms) }} Audio total
{{ totals.transcript_pct }}% Transcribed

Projects

Create project
{% if projects %}
{% for p in projects %}

{{ p.name }}

{{ p.recording_count }} recording{% if p.recording_count != 1 %}s{% endif %}
{% if p.description %}

{{ p.description }}

{% else %}

No description

{% endif %}
{{ fmt_duration(p.total_duration_ms) }} audio {{ p.transcript_pct }}% transcribed
{% endfor %}
{% else %}

No projects yet. Create one to start organizing classroom recordings.

Create your first project
{% endif %}
{% endblock %}