{% extends "base.html" %} {% block title %}vezir — sessions{% endblock %} {% block content %}

Recent sessions

{% if not rows %}

No sessions yet. Run vezir scribe on your laptop.

{% else %} {% for row in rows %} {% endfor %}
Started Scribe Title Status Actions
{{ row.created_at }} {{ row.github }} {{ row.title or '—' }} {{ row.status }} {% if row.error %}
{{ row.error.splitlines()[0] }}
{% endif %}
details {% if row.status == 'needs_labeling' %} · label speakers {% endif %}
{% endif %} {% endblock %}