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

{{ project.name }}

{% if project.description %}{{ project.description }}{% else %}Project recordings and transcription progress{% endif %}

{% endblock %} {% block content %}
{{ project.recording_count }} Recordings
{{ project.segment_count }} Segments
{{ fmt_duration(project.total_duration_ms) }} Audio
{{ project.transcript_pct }}% Transcribed
Settings + Upload recording

Recordings

{% if project.recordings %} {% for r in project.recordings %} {% endfor %}
Title Duration Chunks Transcribed Coverage
{{ r.title }} {{ fmt_duration(r.duration_ms) }} {{ r.segment_count }}
{{ r.transcript_pct }}%
{{ r.coverage_pct }}%
Transcribe Analysis
{% else %}

No recordings in this project yet.

Upload your first audio
{% endif %}
{% endblock %}