{# The Meetings tab: the operational surface. The add-meeting form, then one card per meeting with its managed storage, tapes, run form and profiles, and finally the archive table. The read-only tape/transcript inventory is the Media tab; the minutes summary is on Overview. #}

{{ tr("Add a meeting") }}

{{ tr("Leave the path empty to let clear-record manage the workspace; a path uses a folder you choose.") }}
{% if meetings %} {% for row in meetings %}
{{ row.meeting.title }} {{ row.meeting.status }} {% if row.managed %} {{ tr("managed") }} {% elif row.meeting.workspace_path %} {{ tr("user-chosen") }} {% endif %} {{ row.meeting.workspace_path or tr("no workspace") }} {# A real link to the review's own page: deep-linkable and refresh-safe. #} {{ tr("Review") }}
{# The managed workspace's storage: resolved path, sizes, tapes, upload and delete controls. Fetched per meeting so the project render stays cheap. #}
{# Opt-in: never checked by default, so a run is unchanged unless asked. #}
{% include "_profile_options.html" %}
{% if row.run %} {% set run = row.run %}{% include "_run.html" %} {% else %}
{{ tr("No run yet.") }}
{% endif %}
{% endfor %} {% else %}
{{ tr("No meetings yet.") }}
{% endif %} {% include "_archives.html" %}